14 lines
261 B
Python
14 lines
261 B
Python
__author__ = 'RemiZOffAlex'
|
|
__copyright__ = '(c) RemiZOffAlex'
|
|
__license__ = 'MIT'
|
|
__email__ = 'remizoffalex@mail.ru'
|
|
__url__ = 'https://remizoffalex.ru'
|
|
|
|
from flask_jsonrpc import JSONRPC
|
|
|
|
from .. import app
|
|
|
|
jsonrpc = JSONRPC(app, '/api')
|
|
|
|
from . import user
|