smartlog/ts/smartlog.classes.logrouter.ts
2018-03-03 13:57:55 +01:00

14 lines
217 B
TypeScript

import * as plugins from './smartlog.plugins'
import {
ILogDestination
} from 'smartlog-interfaces'
export class LogRouter {
logDestinations: ILogDestination[] = [];
constructor() {
}
addLogDestination
}