Files
SafeLine/submodule/fvm/include/fvm-c/plot.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

14 lines
208 B
C

#ifndef FVM_PLOT_H
#define FVM_PLOT_H
#include <ct/string.h>
typedef struct {
ct_string_t buf;
} fvm_plot_t;
fvm_plot_t *fvm_plot(fvm_framework_t *fw);
void fvm_plot_destroy(fvm_plot_t *plot);
#endif