updated Postgres Service

This commit is contained in:
2025-04-01 17:30:40 +03:00
parent 6b9e9050a2
commit 4c87c4df91
18 changed files with 745 additions and 368 deletions

View File

@@ -1,11 +1,9 @@
import time
from Controllers.Postgres.config import postgres_configs
from Controllers.Mongo.config import mongo_configs
from Controllers.Postgres.implementations import generate_table_in_postgres, run_all_tests
if __name__ == "__main__":
print(f"Hello from the Test Service {mongo_configs.url}")
print(f"Hello from the Test Service {postgres_configs.url}")
while True:
time.sleep(10)
run_all_tests()