add wallet channel

This commit is contained in:
Conor Patrick
2018-07-07 22:43:06 -04:00
parent fbbf430152
commit 7df04964cc
20 changed files with 2067 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
# https://blog.anvileight.com/posts/simple-python-http-server/#python-3-x
from http.server import HTTPServer, SimpleHTTPRequestHandler
import ssl
httpd = HTTPServer(('localhost', 4443), SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket (httpd.socket,
keyfile="localhost.key",
certfile='localhost.crt', server_side=True)
httpd.serve_forever()