コード例 #1
0
ファイル: test_endpoint.py プロジェクト: acuros/noopy
def double_ep_view():
    view = endpoint('/foo', methods.PUT)(simple_view)
    return endpoint('/foo', methods.POST)(view)
コード例 #2
0
ファイル: test_endpoint.py プロジェクト: acuros/noopy
def single_ep_view():
    return endpoint('/foo', methods.GET)(simple_view)