96cf5ad8 by 周伟奇

add test project

1 parent fc765141
Cython==0.29.21
Nuitka==1.1.6
sanic==20.12.7
pycryptodome==3.9.9
getmac==0.8.2
\ No newline at end of file
......
from sanic import Sanic
from sanic.response import text
from utils.tools import tool_test
app = Sanic("MyHelloWorldApp")
@app.get("/")
async def hello_world(request):
return text("Hello, world.")
if __name__ == '__main__':
tool_test()
app.run(host='0.0.0.0', port=1337, access_log=False)
\ No newline at end of file
def tool_test():
print('load utils success')
\ No newline at end of file
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!