10 lines
225 B
Python
10 lines
225 B
Python
|
from database import Database
|
||
|
from .storages.profile_storage import ProfileStorage
|
||
|
from .storages.office_storage import OfficeStorage
|
||
|
|
||
|
|
||
|
db = Database()
|
||
|
|
||
|
profile_storage = ProfileStorage(db)
|
||
|
office_storage = OfficeStorage(db)
|