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