import { NextFunction, Request, Response } from 'express'
import { type } from '@config/network'
export async function headerHandler(
request: Request,
response: Response,
next: NextFunction,
): Promise<void> {
response.append('Network', type)
next()
}
Back to Directory