Initial commit
This commit is contained in:
19
services/greeter.service.ts
Normal file
19
services/greeter.service.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
import { Context, Service, ServiceBroker, ServiceSchema, Errors } from "moleculer";
|
||||
|
||||
export default class TorrentService extends Service {
|
||||
// @ts-ignore
|
||||
public constructor(
|
||||
public broker: ServiceBroker,
|
||||
schema: ServiceSchema<{}> = { name: "torrent" },
|
||||
) {
|
||||
super(broker);
|
||||
this.parseServiceSchema({
|
||||
name: "torrent",
|
||||
mixins: [],
|
||||
hooks: {},
|
||||
actions: {},
|
||||
methods: {},
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user