()
| 1 | export class AuthMiddleware { |
| 2 | private static instance: AuthMiddleware; |
| 3 | private constructor() {} |
| 4 | public static getInstance(): AuthMiddleware { |
| 5 | if (!AuthMiddleware.instance) AuthMiddleware.instance = new AuthMiddleware(); |
| 6 | return AuthMiddleware.instance; |
nothing calls this directly
no outgoing calls
no test coverage detected