ucap-electron/projects/common/src/lib/app/services/app-settings.service.ts
2020-03-27 17:41:40 +09:00

17 lines
255 B
TypeScript

import {
DIConfiguration,
Injectable,
ProviderScope,
ProviderType
} from '@tsed/di';
@Injectable({
scope: ProviderScope.SINGLETON,
global: true
})
export class AppSettingsService extends DIConfiguration {
constructor() {
super();
}
}