export type CHANNEL_TYPE = 'messagebus' | 'REST' | 'gRpc' | 'socket' | 'cron';
export type ACTOR_TYPE = 'user' | 'service';
export type EVENT_TYPE = 'INFO' | 'DEBUG' | 'WARN' | 'ERROR' | 'TRACE' | 'FATAL';
export interface PlainObject {
    [key: string]: any;
}
