mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-01 22:11:01 +08:00
5 lines
115 B
Python
Executable File
5 lines
115 B
Python
Executable File
#!/usr/bin/python3
|
|
from wsgiref.handlers import CGIHandler
|
|
from resallocwebui.app import app
|
|
CGIHandler().run(app)
|