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