22 lines
512 B
Python
22 lines
512 B
Python
from typing import Any, Union
|
|
from fastapi import Request
|
|
|
|
from Events.base_request_model import TokenDictType, BaseRouteModel
|
|
|
|
|
|
class Handlers:
|
|
"""Class for handling authentication functions"""
|
|
|
|
@classmethod # Requires no auth context
|
|
def handle_function(cls, **kwargs):
|
|
"""Handle function with kwargs"""
|
|
return
|
|
|
|
|
|
class TemplateFunctions(BaseRouteModel):
|
|
"""Class for handling authentication functions"""
|
|
|
|
@classmethod
|
|
def template_example_function(cls):
|
|
return
|