smartlog/ts/smartlog.classes.logrouter.ts

11 lines
226 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-07-08 20:30:21 +00:00
import { ILogDestination } from '@pushrocks/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;
}