7 lines
181 B
Python
7 lines
181 B
Python
from config import Config
|
|
from models import JobStore
|
|
|
|
if __name__ == '__main__':
|
|
cfg = Config()
|
|
store = JobStore(cfg.DATABASE)
|
|
print(f"Database ready: {cfg.DATABASE}")
|