10 lines
No EOL
140 B
Python
10 lines
No EOL
140 B
Python
"""
|
|
Router endpoints for the contact module
|
|
"""
|
|
from fastapi import APIRouter
|
|
|
|
|
|
router = APIRouter(
|
|
prefix="/contact",
|
|
tags=["contact"],
|
|
) |