export interface Logger {
    error(msg: string): void;
    log(msg: string): void;
}
