mirror of
https://github.com/tencentmusic/cube-studio.git
synced 2025-03-07 15:08:51 +08:00
19 lines
211 B
Python
Executable File
19 lines
211 B
Python
Executable File
from myapp import app
|
|
|
|
config = app.config
|
|
|
|
|
|
@app.route("/health")
|
|
def health():
|
|
return "OK"
|
|
|
|
|
|
@app.route("/healthcheck")
|
|
def healthcheck():
|
|
return "OK"
|
|
|
|
|
|
@app.route("/ping")
|
|
def ping():
|
|
return "OK"
|