commit
184de8576f
@ -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…
Reference in new issue