remove npl

This commit is contained in:
m
2026-07-12 22:15:23 +02:00
parent 010cb2cb49
commit 3650b7ba9d
21 changed files with 8 additions and 478 deletions
-2
View File
@@ -6,7 +6,6 @@ type Config struct {
Port string
DBPath string
OCREndpoint string
NLPEndpoint string
UploadDir string
HMACSecret string
ServerHost string
@@ -17,7 +16,6 @@ func Load() *Config {
Port: envOr("PORT", "8080"),
DBPath: envOr("DB_PATH", "vaultdrop.db"),
OCREndpoint: envOr("OCR_ENDPOINT", "http://localhost:9090"),
NLPEndpoint: envOr("NLP_ENDPOINT", "http://localhost:9091"),
UploadDir: envOr("UPLOAD_DIR", "./uploads"),
HMACSecret: envOr("HMAC_SECRET", "thisismyrandomstring"),
ServerHost: envOr("SERVER_HOST", "http://192.168.1.17:8080"),