5 lines
115 B
Text
5 lines
115 B
Text
|
#!/usr/bin/python3
|
||
|
from wsgiref.handlers import CGIHandler
|
||
|
from resallocwebui.app import app
|
||
|
CGIHandler().run(app)
|