agenda/run.fcgi

9 lines
189 B
Plaintext
Raw Normal View History

2023-10-02 20:35:30 +01:00
#!/usr/bin/python3
from flipflop import WSGIServer
import sys
sys.path.append('/home/edward/src/2021/agenda')
from web_view import app
if __name__ == '__main__':
WSGIServer(app).run()