mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
9 lines
117 B
Python
9 lines
117 B
Python
from server import context
|
|
|
|
app = context.app
|
|
|
|
|
|
@app.route('api/test/hello')
|
|
def hello():
|
|
return 'Hello, world!'
|