6 lines
186 B
JavaScript
6 lines
186 B
JavaScript
import { Instance } from "./Instance.js";
|
|
export class ExampleService extends Instance {
|
|
constructor() {
|
|
super("ExampleService");
|
|
}
|
|
} // Basic example of a service in BO3
|