input-service/src/db.py

14 lines
227 B
Python
Raw Normal View History

2020-03-25 02:54:59 +01:00
#!/usr/bin/env python3
from flask_sqlalchemy import SQLAlchemy
"""
2021-06-13 20:01:23 +02:00
Database api
2020-03-25 02:54:59 +01:00
"""
__author__ = '@tormakris'
__copyright__ = "Copyright 2020, Birbnetes Team"
__module_name__ = "db"
__version__text__ = "1"
db = SQLAlchemy()