19 lines
278 B
Python
19 lines
278 B
Python
#!/usr/bin/env python3
|
|
|
|
from flask_classful import FlaskView
|
|
|
|
"""
|
|
Item VIEW
|
|
"""
|
|
|
|
__author__ = "@tormakris"
|
|
__copyright__ = "Copyright 2020, UnstableVortex Team"
|
|
__module_name__ = "itemview"
|
|
__version__text__ = "1"
|
|
|
|
|
|
class ItemView(FlaskView):
|
|
|
|
def index(self):
|
|
pass
|