This commit is contained in:
Chris Milne 2026-05-13 15:09:59 +01:00
commit 0dd23f6de0
33 changed files with 881 additions and 0 deletions

View file

@ -0,0 +1,5 @@
"""
Configurations for the _____ module
Exports:
"""

View file

@ -0,0 +1,5 @@
"""
Constants and error codes for the _____ module
Exports:
"""

View file

@ -0,0 +1,5 @@
"""
Router dependencies for the _____ module
Exports:
"""

View file

@ -0,0 +1,5 @@
"""
Module specific exceptions for the _____ module
Exports:
"""

View file

@ -0,0 +1,5 @@
"""
Database models for the _____ module
Exports:
"""

View file

@ -0,0 +1,11 @@
"""
Router endpoints for the _____ module
Endpoints:
"""
from fastapi import APIRouter
router = APIRouter(
tags=[""],
)

View file

@ -0,0 +1,5 @@
"""
Pydantic models for the _____ module
Exports:
"""

View file

@ -0,0 +1,5 @@
"""
Module specific business logic for the _____ module
Exports:
"""

View file

@ -0,0 +1,5 @@
"""
Non-business logic reusable functions and classes for the _____ module
Exports:
"""