File size: 250 Bytes
338036b
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# help us to set settings to project 

from helpers.config import get_settings, Settings

class BaseDataModel:
    def __init__(self, db_client: object):
        self.db_client  = db_client 
        self.app_settings = get_settings()