smartlog-receiver/ts/sl.classes.smartlogreceiver.ts

14 lines
327 B
TypeScript
Raw Normal View History

2018-10-31 16:42:18 +00:00
import * as plugins from './sl.receiver.plugins';
import { ILogPackage, ILogPackageAuthenticated } from '@pushrocks/smartlog-interfaces';
/**
* a class that receives smartlog packages
*/
export class SmartlogReceiver {
/**
* handles a authenticated log
*/
2018-10-31 16:45:51 +00:00
private handleAuthenticatedLog(authenticatedLogArg) {}
2018-10-31 16:42:18 +00:00
}