You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It might be nice to have an "auto-directory builder" from routes:
@autoroute('/test/foo', 'some description')
def test_foo():
return "this is a foo test"
@autoroute('/test/bar', 'some other description')
def test_bar():
return "this is a bar test"
That way you need not even build the directory object or have a route for /test.
Thoughts?
The text was updated successfully, but these errors were encountered:
It might be nice to have an "auto-directory builder" from routes:
That way you need not even build the directory object or have a route for
/test
.Thoughts?
The text was updated successfully, but these errors were encountered: