Initial commit

This commit is contained in:
2023-03-23 02:38:04 +00:00
commit 0f1b0a9b94
57 changed files with 2155 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Python imports
# Lib imports
# Application imports
class EndpointRegistry():
def __init__(self):
self._endpoints = {}
def register(self, rule, **options):
def decorator(f):
self._endpoints[rule] = f
return f
return decorator
def get_endpoints(self):
return self._endpoints