mirror of
https://github.com/krateng/maloja.git
synced 2025-06-14 14:22:16 +03:00
This is getting worse and worse
This commit is contained in:
parent
924d4718db
commit
2c44745abc
@ -1,6 +1,17 @@
|
|||||||
# server
|
# server
|
||||||
from bottle import request, response, FormsDict
|
from bottle import request, response, FormsDict
|
||||||
|
|
||||||
|
|
||||||
|
# we're running an auxiliary task that doesn't require all the random background
|
||||||
|
# nonsense to be fired up
|
||||||
|
# this is temporary
|
||||||
|
# FIX YO DAMN ARCHITECTURE ALREADY
|
||||||
|
AUX_MODE = False
|
||||||
|
def set_aux_mode():
|
||||||
|
global AUX_MODE
|
||||||
|
AUX_MODE = True
|
||||||
|
|
||||||
|
|
||||||
# rest of the project
|
# rest of the project
|
||||||
from ..cleanup import CleanerAgent
|
from ..cleanup import CleanerAgent
|
||||||
from .. import images
|
from .. import images
|
||||||
@ -45,14 +56,7 @@ dbstatus = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
# we're running an auxiliary task that doesn't require all the random background
|
|
||||||
# nonsense to be fired up
|
|
||||||
# this is temporary
|
|
||||||
# FIX YO DAMN ARCHITECTURE ALREADY
|
|
||||||
AUX_MODE = False
|
|
||||||
def set_aux_mode():
|
|
||||||
global AUX_MODE
|
|
||||||
AUX_MODE = True
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user