1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-27 21:43:08 +03:00
Files
postgres/src/include/archive/shell_archive.h
Bruce Momjian 451c43974f Update copyright for 2026
Backpatch-through: 14
2026-01-01 13:24:10 -05:00

25 lines
698 B
C

/*-------------------------------------------------------------------------
*
* shell_archive.h
* Exports for archiving via shell.
*
* Copyright (c) 2022-2026, PostgreSQL Global Development Group
*
* src/include/archive/shell_archive.h
*
*-------------------------------------------------------------------------
*/
#ifndef _SHELL_ARCHIVE_H
#define _SHELL_ARCHIVE_H
#include "archive/archive_module.h"
/*
* Since the logic for archiving via a shell command is in the core server
* and does not need to be loaded via a shared library, it has a special
* initialization function.
*/
extern const ArchiveModuleCallbacks *shell_archive_init(void);
#endif /* _SHELL_ARCHIVE_H */