vue-molten-app/backend/runcible/api/welcome/views.py

9 lines
147 B
Python

from typing import Dict
def welcome() -> Dict:
return {"message": "Welcome to runcible"}
def ping() -> Dict:
return {"message": "pong"}