7 lines
128 B
Plaintext
7 lines
128 B
Plaintext
|
#!/usr/bin/python3
|
||
|
from flipflop import WSGIServer
|
||
|
from schort import app
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
WSGIServer(app).run()
|