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
This commit is contained in:
2026-07-05 02:46:26 +08:00
parent 28cdeccca4
commit 3178b8c448
27 changed files with 1447 additions and 229 deletions
+13
View File
@@ -0,0 +1,13 @@
#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