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