mirror of
https://github.com/thib8956/tic-tac-toe-ws.git
synced 2026-03-24 14:37:56 +00:00
8 lines
226 B
Python
8 lines
226 B
Python
import http.server
|
|
from functools import partial
|
|
|
|
HandlerClass = partial(http.server.SimpleHTTPRequestHandler, directory="dist/")
|
|
# Run the server (like `python -m http.server` does)
|
|
http.server.test(HandlerClass, port=8000)
|
|
|