8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
import { AService } from '@/core/service/kernel/AService.ts'
|
|
|
|
export class SettingsService extends AService {
|
|
constructor() {
|
|
super('SettingsService')
|
|
console.log('SettingsService - 服务注册')
|
|
}
|
|
} |