mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
248 B
Python
15 lines
248 B
Python
|
|
"""Falcon API class."""
|
|
|
|
class API(object):
|
|
|
|
def add_route(self, uri_template, resource, **kwargs):
|
|
pass
|
|
|
|
def add_sink(self, sink, prefix=r'/'):
|
|
pass
|
|
|
|
def add_error_handler(self, exception, handler=None):
|
|
pass
|
|
|