MVP реализации MoexVibe — NestJS бэкенд + React фронтенд + CI/CD #1

Merged
ksv741 merged 21 commits from feat/mvp-implementation into main 2026-06-13 21:07:34 +03:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit fdb8b52e38 - Show all commits

View File

@ -1,7 +1,8 @@
import { Module } from '@nestjs/common';
import { Global, Module } from '@nestjs/common';
import { CacheModule as NestCacheModule } from '@nestjs/cache-manager';
import { CacheService } from './cache.service';
@Global()
@Module({
imports: [
NestCacheModule.register({

View File

@ -1,10 +1,8 @@
import { Module } from '@nestjs/common';
import { CacheModule } from '../cache/cache.module';
import { SharesController } from './shares.controller';
import { SharesService } from './shares.service';
@Module({
imports: [CacheModule],
controllers: [SharesController],
providers: [SharesService],
exports: [SharesService],