diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-14 10:05:58 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-02-14 10:05:58 -0500 |
commit | 1762aa42cd86e0bb2631631488bf8b2474378f83 (patch) | |
tree | 210c031a88ed9c439b8faa9b21828eee67e154d7 /src/lib/entrypoint/include/tpl.h | |
parent | 014eb7d96a55067aec4c6b81cf50072f90df5b5f (diff) | |
download | stasis-1762aa42cd86e0bb2631631488bf8b2474378f83.tar.gz |
Move cli/stasis main program to a library stasis_entrypoint.a
Diffstat (limited to 'src/lib/entrypoint/include/tpl.h')
-rw-r--r-- | src/lib/entrypoint/include/tpl.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/entrypoint/include/tpl.h b/src/lib/entrypoint/include/tpl.h new file mode 100644 index 0000000..398f0fe --- /dev/null +++ b/src/lib/entrypoint/include/tpl.h @@ -0,0 +1,10 @@ +#ifndef STASIS_TPL_H +#define STASIS_TPL_H + +#include "template.h" +#include "template_func_proto.h" + +void tpl_setup_vars(struct Delivery *ctx); +void tpl_setup_funcs(struct Delivery *ctx); + +#endif //STASIS_TPL_H |