| // Command vigil-compact is the isolated, fail-closed whole-package ONNX | |
| // classifier. Its import graph deliberately excludes every legacy classifier, | |
| // heuristic scorer, and fallback implementation. | |
| package main | |
| import ( | |
| "os" | |
| "huggingface.co/turenlabs/Vigil/source/pkg/compactcli" | |
| ) | |
| func main() { | |
| os.Exit(compactcli.Run(os.Args[1:], os.Stdout, os.Stderr)) | |
| } | |