scripts/srvuser

12 lines
225 B
Text
Raw Normal View History

#!/usr/bin/python
from sys import argv
from http.server import HTTPServer
from srvuser import srvuser
# Create and run server
2022-02-03 00:52:38 +00:00
print('Starting server')
httpd = HTTPServer(('localhost', 1337), srvuser)
httpd.serve_forever()