all the project copy

This commit is contained in:
2026-07-16 12:27:06 +02:00
parent 926b7de75b
commit 568beef49a
631 changed files with 130346 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import sys
from pathlib import Path
ROOT_DIR = Path(__file__).resolve().parents[1]
CONN_DIR = ROOT_DIR / "conn"
if str(CONN_DIR) not in sys.path:
sys.path.insert(0, str(CONN_DIR))
import filters
def manageCompetence(tid,cid, sort):
if filters.insertFilter(tid, sort, cid):
return "Filtro inserito con successo"
else:
return "Filtro gia' esistente!"