init
This commit is contained in:
commit
0dd23f6de0
33 changed files with 881 additions and 0 deletions
5
src/_module_template/config.py
Normal file
5
src/_module_template/config.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
Configurations for the _____ module
|
||||
|
||||
Exports:
|
||||
"""
|
||||
5
src/_module_template/constants.py
Normal file
5
src/_module_template/constants.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
Constants and error codes for the _____ module
|
||||
|
||||
Exports:
|
||||
"""
|
||||
5
src/_module_template/dependencies.py
Normal file
5
src/_module_template/dependencies.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
Router dependencies for the _____ module
|
||||
|
||||
Exports:
|
||||
"""
|
||||
5
src/_module_template/exceptions.py
Normal file
5
src/_module_template/exceptions.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
Module specific exceptions for the _____ module
|
||||
|
||||
Exports:
|
||||
"""
|
||||
5
src/_module_template/models.py
Normal file
5
src/_module_template/models.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
Database models for the _____ module
|
||||
|
||||
Exports:
|
||||
"""
|
||||
11
src/_module_template/router.py
Normal file
11
src/_module_template/router.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
"""
|
||||
Router endpoints for the _____ module
|
||||
|
||||
Endpoints:
|
||||
"""
|
||||
from fastapi import APIRouter
|
||||
|
||||
|
||||
router = APIRouter(
|
||||
tags=[""],
|
||||
)
|
||||
5
src/_module_template/schemas.py
Normal file
5
src/_module_template/schemas.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
Pydantic models for the _____ module
|
||||
|
||||
Exports:
|
||||
"""
|
||||
5
src/_module_template/service.py
Normal file
5
src/_module_template/service.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
Module specific business logic for the _____ module
|
||||
|
||||
Exports:
|
||||
"""
|
||||
5
src/_module_template/utils.py
Normal file
5
src/_module_template/utils.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
Non-business logic reusable functions and classes for the _____ module
|
||||
|
||||
Exports:
|
||||
"""
|
||||
Loading…
Add table
Add a link
Reference in a new issue