diff --git a/zentra_api/cli/builder/routes.py b/zentra_api/cli/builder/routes.py new file mode 100644 index 0000000..2ef6678 --- /dev/null +++ b/zentra_api/cli/builder/routes.py @@ -0,0 +1,11 @@ +from zentra_api.cli.constants.routes import Route + + +class RouteBuilder: + """A class for building FastAPI routes.""" + + def __init__(self, route: Route) -> None: + self.route = route + + def build(self) -> None: + pass