mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +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)
|