misc/version bump
This commit is contained in:
5
base.py
5
base.py
@ -16,12 +16,12 @@ logger.setLevel(logging.INFO)
|
||||
|
||||
loop = asyncio.get_event_loop()
|
||||
app = FastAPI(title="codey.lol API",
|
||||
version="0.1a",
|
||||
version="1.0",
|
||||
contact={
|
||||
'name': 'codey'
|
||||
},
|
||||
redirect_slashes=False,
|
||||
loop=loop)
|
||||
app.loop = loop
|
||||
|
||||
constants = importlib.import_module("constants").Constants()
|
||||
util = importlib.import_module("util").Utilities(app, constants)
|
||||
@ -82,6 +82,7 @@ End Blacklisted Routes
|
||||
"""
|
||||
Actionable Routes
|
||||
"""
|
||||
|
||||
randmsg_endpoint = importlib.import_module("endpoints.rand_msg").RandMsg(app, util, constants, glob_state)
|
||||
transcription_endpoints = importlib.import_module("endpoints.transcriptions").Transcriptions(app, util, constants, glob_state)
|
||||
ai_endpoints = importlib.import_module("endpoints.ai").AI(app, util, constants, glob_state)
|
||||
|
Reference in New Issue
Block a user