master
qhga 2 years ago
commit 184de8576f
Signed by: phga
GPG Key ID: 5249548AA705F019

@ -0,0 +1,3 @@
# HOWTO
Run like this: `python -m src`

@ -0,0 +1,2 @@
print("INIT")

@ -0,0 +1,4 @@
from .test_queueing_model import doSmth
print("MAIN")
doSmth() # Funktionsimport

@ -0,0 +1,3 @@
class PostgresDB:
def __init__(self):
print("POSTGRES")

@ -0,0 +1,3 @@
class DB:
def __init__(self):
print("DB")

@ -0,0 +1,6 @@
from .databases import PostgresDB
from .dbs.db import DB
def doSmth():
p = PostgresDB()
d = DB()
Loading…
Cancel
Save