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