Compare commits

..

No commits in common. "b0afba6de76f81361374289ffb1bf23e71df31ce" and "e248b1c3e591e1660e734cc92da774504911b2bd" have entirely different histories.

View File

@ -44,6 +44,7 @@ from appPublic.rc4 import unpassword, password
from ahserver.filedownload import path_encode
from imgThumb import thumb
from idfile import idFileDownload
from myauth import MyAuthAPI
from rf import getPublicKey, getI18nMapping
from version import __version__
@ -132,6 +133,7 @@ if __name__ == '__main__':
server = ConfiguredServer(auth_klass=MyAuthAPI, workdir=workdir)
rf = RegisterFunction()
rf.register('makeThumb',thumb)
rf.register('idFileDownload',idFileDownload)
rf.register('getPublicKey', getPublicKey)
rf.register('getI18nMapping', getI18nMapping)
g = ServerEnv()