2024-07-27 13:27:38 +02:00
|
|
|
import { KeysModule } from './keys/keys.module.js'
|
|
|
|
import { Module } from '@nestjs/common'
|
2024-07-28 06:52:03 +02:00
|
|
|
import { ViewsModule } from './views/views.module.js'
|
2024-07-27 12:55:13 +02:00
|
|
|
|
|
|
|
@Module({
|
2024-07-28 06:52:03 +02:00
|
|
|
imports: [KeysModule, ViewsModule],
|
2024-07-27 12:55:13 +02:00
|
|
|
})
|
|
|
|
export class AppModule {}
|