Files
vue-desktop/src/core/service/services/NotificationService.ts
2025-08-29 13:01:49 +08:00

8 lines
225 B
TypeScript

import { AService } from '@/core/service/kernel/AService.ts'
export class NotificationService extends AService {
constructor() {
super('NotificationService');
console.log('NotificationService - 服务注册')
}
}