Files
bo3-js/js/instances/ExampleService.js

7 lines
237 B
JavaScript
Raw Permalink Normal View History

2025-10-12 18:03:20 +02:00
import { Instance } from "./Instance.js";
2025-10-23 20:58:19 +02:00
import { BaseService } from "./BaseService.js";
export class ExampleService extends BaseService {
2025-10-12 18:03:20 +02:00
constructor() {
super("ExampleService");
}
} // Basic example of a service in BO3