Implement license validation endpoint and update templates; add test script

This commit is contained in:
Maximilian G.
2026-03-22 14:49:38 +00:00
committed by GitHub
parent 5e0c77b147
commit 91feb7d010
6 changed files with 20 additions and 14 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import json
import os
import secrets
LICENSES_FILE = os.path.abspath(os.path.join(os.path.dirname(__file__), "licenses.json"))
LICENSES_FILE = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "licenses.json"))
def load_file() -> dict: