πSqlite
This service is used to interact with the Redis database.
Imports
import { SqliteService } from 'niro-health';import { SqliteModule } from 'niro-health';import type { ISqliteService } from 'niro-health';Method of Use
import { Module } from '@nestjs/common';
import {
AppHostService,
SqliteService,
ConfigurationService,
ValidatorRegexpService,
StringExService,
DebugService,
} from 'niro-health';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
controllers: [AppController],
providers: [
AppService,
{
provide: 'IAppHostService',
useClass: AppHostService,
},
{
provide: 'ISqliteService',
useClass: SqliteService,
},
{
provide: 'IConfigurationService',
useClass: ConfigurationService,
},
{
provide: 'IValidatorRegexpService',
useClass: ValidatorRegexpService,
},
{
provide: 'IStringExService',
useClass: StringExService,
},
{
provide: 'IDebugService',
useClass: DebugService,
},
],
})
export class AppModule {}With dependencies
Interface
Service
Properties
Property
Scope
Description
Methods
Method
Scope
Description
Last updated