- Added ApiRouteTemplate as a base class for defining API routes - Implemented HealthCheckApi for health check endpoint management - Introduced IApiRoute interface for consistent route handling - Updated UserApiRoute to align with new routing structure - Added HealthCheck class for health status retrieval - Improved dependency management with new types and interfaces
6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
import type {LoggingLevelType} from '../LoggingLevel';
|
|
|
|
export interface IAppender {
|
|
log(timestamp: string, level: LoggingLevelType, category: string, message: string): void;
|
|
}
|