All changes are either: - Correcting tabs - Adding/removing line breaks - Adding trailing commas
11 lines
142 B
Python
11 lines
142 B
Python
"""
|
|
Router endpoints for the contact module
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
|
|
router = APIRouter(
|
|
prefix="/contact",
|
|
tags=["contact"],
|
|
)
|