Files
SafeLine/submodule/fvm/include/fvm-c/plot.h
T
Binbim f9c6bc221e feat: add official binaries with full FVM WAF functionality
- Extracted webserver (13.5MB) from safeline-mgt:9.3.9
- Extracted tcontrollerd (12MB) from safeline-tengine:9.3.9
- Extracted nginx from safeline-tengine:9.3.9
- Extracted libfusion.so (127MB) FVM engine from safeline-fvm:9.3.9
- Added musl libc for Alpine-based containers
- Created proper FVM C headers matching libfusion.so API
- Added install_full.sh for complete deployment
2026-07-05 03:41:41 +08:00

14 lines
209 B
C

#ifndef FVM_PLOT_H
#define FVM_PLOT_H
#include <fvm-c/update.h>
typedef struct {
fvm_buf_t buf;
} fvm_plot_t;
fvm_plot_t *fvm_plot(fvm_framework_t *fw);
void fvm_plot_destroy(fvm_plot_t *plot);
#endif