8c07e388cd
Co-authored-by: Néstor Pérez <25409753+prryplatypus@users.noreply.github.com>
7 lines
78 B
Python
7 lines
78 B
Python
from sanic import Sanic
|
|
|
|
|
|
app = Sanic("Example")
|
|
|
|
app.static("/", "./static")
|