6 lines
105 B
Python
6 lines
105 B
Python
from .databases import PostgresDB
|
|
from .dbs.db import DB
|
|
|
|
def doSmth():
|
|
p = PostgresDB()
|
|
d = DB() |