htman: add cgi wrapper

This commit is contained in:
lars 2021-02-09 21:14:14 +00:00
parent 953cb2f935
commit c82f0f480e

10
htman/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')