123/myapp/routes/api.py
2025-02-01 15:57:22 +08:00

7 lines
114 B
Python
Executable file

# routes/api.py
from masonite.routes import Route
ROUTES = [
Route.get('/users', 'UsersController@index')
]