This commit is contained in:
2022-05-03 22:34:52 +03:00
parent 1663f94b0e
commit 8958be3141
54 changed files with 1569 additions and 1014 deletions

12
myapp/api/__init__.py Normal file
View File

@@ -0,0 +1,12 @@
__author__ = 'RemiZOffAlex'
__copyright__ = '(c) RemiZOffAlex'
__email__ = 'remizoffalex@mail.ru'
from jsonrpc import JSONRPC
jsonrpc = JSONRPC()
from . import ( # noqa F401
user
)