sanic C:\Users\sy\Desktop\server.py
No module named C found.
Example File: project/sanic_server.py -> app
Example Module: project.sanic_server.app
ps:
from sanic import Sanic
from sanic.response import text
app = Sanic("MyHelloWorldApp")
@app.get("/")
async def hello_world(request):
return text("Hello, world.")