6 lines
77 B
Python
6 lines
77 B
Python
from sanic import Sanic
|
|
|
|
app = Sanic("Example")
|
|
|
|
app.static("/", "./static")
|