better organization
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-11-26 08:06:16 +01:00
parent 71f4cddfc5
commit 20991dd50f
19 changed files with 391 additions and 308 deletions

View File

@@ -0,0 +1,2 @@
from .fred import flaskred
from .marshm import ma

14
src/flaskaddons/fred.py Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python3
from flask_redis import FlaskRedis
"""
Redis
"""
__author__ = '@tormakris'
__copyright__ = "Copyright 2020, onSpot Team"
__module_name__ = "fred"
__version__text__ = "1"
flaskred = FlaskRedis()

14
src/flaskaddons/marshm.py Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python3
from flask_marshmallow import Marshmallow
"""
Marshmallow
"""
__author__ = '@tormakris'
__copyright__ = "Copyright 2020, onSpot Team"
__module_name__ = "marshm"
__version__text__ = "1"
ma = Marshmallow()