3178b8c448
- 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
14 lines
208 B
C
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
|