Common interface for server routes, providing shared properties.
interface ServerRouteCommon { path: string; headers?: Record<string, string> | undefined; status?: number | undefined;}