""" Router endpoints for the auth module Exports: - router: fastapi.APIRouter """ from fastapi import APIRouter router = APIRouter( tags=["auth"], )