Relay: Add missing from bottle import ..., request, ...

This commit is contained in:
Athanasius 2021-07-02 17:07:46 +00:00
parent 1e9edf94f7
commit 1df2fb749b

View File

@ -22,7 +22,7 @@ from eddn.conf.Settings import Settings, loadConfig
from gevent import monkey
monkey.patch_all()
from bottle import Bottle, get, response, run
from bottle import Bottle, get, request, response, run
app = Bottle()
# This import must be done post-monkey-patching!