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:
@@ -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
|
||||
Reference in New Issue
Block a user