14 lines
236 B
Python
14 lines
236 B
Python
|
#!/usr/bin/env python3
|
||
|
from flask_sqlalchemy import SQLAlchemy
|
||
|
|
||
|
"""
|
||
|
SQLAlchemy definition
|
||
|
"""
|
||
|
|
||
|
__author__ = '@tormakris'
|
||
|
__copyright__ = "Copyright 2020, Birbnetes Team"
|
||
|
__module_name__ = "db"
|
||
|
__version__text__ = "1"
|
||
|
|
||
|
db = SQLAlchemy()
|