Files
SafeLine/submodule/fvm/include/fvm-c/framework.h
T
Binbim 3178b8c448 feat: add compiled binaries and stub build system
- Compiled webserver and tcontrollerd for Linux amd64
- Added CGo stubs to build without FVM library
- Added private module stubs (errors, log, settings)
- Added proto stubs for gRPC
- Added install.sh deployment script
- Fixed auth.go type error and TOTP clock skew bypass
2026-07-05 02:46:26 +08:00

12 lines
231 B
C

#ifndef FVM_FRAMEWORK_H
#define FVM_FRAMEWORK_H
#include <ct/string.h>
typedef struct fvm_framework fvm_framework_t;
fvm_framework_t *fvm_framework_acquire(void *config);
void fvm_framework_release(fvm_framework_t *fw);
#endif