Skip to content

Commit

Permalink
chore(routes): Add template for RouteBuilder.
Browse files Browse the repository at this point in the history
  • Loading branch information
Achronus committed Sep 22, 2024
1 parent e14b058 commit 87b21b0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions zentra_api/cli/builder/routes.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 87b21b0

Please sign in to comment.