8 lines
143 B
Python
8 lines
143 B
Python
from app import app
|
|
from database import db_setup, export, parser
|
|
from processing import tabulate
|
|
|
|
db_setup.main()
|
|
parser.main()
|
|
export.main()
|