UNPKG

moleculer-decorators

Version:
12 lines (9 loc) 192 B
import { Service } from "moleculer"; export class CustomService extends Service { constructor(broker, schema) { super(broker, schema); } foo() { return "bar"; } }