smartlog/ts/smartlog.classes.logrouter.ts

11 lines
215 B
TypeScript
Raw Normal View History

2018-06-05 18:48:14 +00:00
import * as plugins from './smartlog.plugins';
2018-03-03 12:57:55 +00:00
2018-06-05 18:48:14 +00:00
import { ILogDestination } from 'smartlog-interfaces';
2018-03-03 12:57:55 +00:00
export class LogRouter {
logDestinations: ILogDestination[] = [];
2018-06-05 18:48:14 +00:00
constructor() {}
2018-03-03 12:57:55 +00:00
2018-06-05 18:48:14 +00:00
addLogDestination;
}