htman: add cgi wrapper

This commit is contained in:
lars 2021-02-09 21:14:14 +00:00
parent 8a185e878a
commit 22f27a784d

10
htman.cgi Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env python3
import os
import sys
sys.path.insert(0, os.path.dirname(__file__))
from htman import bottle
bottle.run(server='cgi')