Torma Kristóf
211be6cf96
All checks were successful
continuous-integration/drone/push Build is passing
14 lines
227 B
Python
14 lines
227 B
Python
#!/usr/bin/env python3
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
"""
|
|
Database api
|
|
"""
|
|
|
|
__author__ = '@tormakris'
|
|
__copyright__ = "Copyright 2020, Birbnetes Team"
|
|
__module_name__ = "db"
|
|
__version__text__ = "1"
|
|
|
|
db = SQLAlchemy()
|