7 lines
122 B
Python
7 lines
122 B
Python
"""Flask extensions list"""
|
|
|
|
from flaskext.mysql import MySQL # type: ignore
|
|
|
|
|
|
sql = MySQL(autocommit=True)
|
|
exts = [sql]
|