12 lines
316 B
Python
12 lines
316 B
Python
import time
|
|
|
|
from Controllers.Postgres.config import postgres_configs
|
|
from Controllers.Mongo.config import mongo_configs
|
|
|
|
|
|
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)
|