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