Renamed utiols folder; fixed widget error on start; Symbols logic fix

This commit is contained in:
2024-02-28 21:27:13 -06:00
parent a3496263b9
commit d073282c66
27 changed files with 288 additions and 114 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