format & lint

This commit is contained in:
2024-11-17 23:20:07 +04:00
parent ea70c5cd07
commit e20fe9745d
2 changed files with 2 additions and 8 deletions

View File

@@ -4,9 +4,7 @@ import { IsArray, IsObject, ValidateNested } from "class-validator";
import { Type } from "class-transformer";
import { TeacherDto } from "./teacher.dto";
export class TeacherScheduleDto extends PickType(ScheduleDto, [
"updatedAt",
]) {
export class TeacherScheduleDto extends PickType(ScheduleDto, ["updatedAt"]) {
/**
* Расписание преподавателя
*/

View File

@@ -1,8 +1,4 @@
import {
Inject,
Injectable,
NotFoundException,
} from "@nestjs/common";
import { Inject, Injectable, NotFoundException } from "@nestjs/common";
import { BasicXlsDownloader } from "./internal/xls-downloader/basic-xls-downloader";
import { Cache, CACHE_MANAGER } from "@nestjs/cache-manager";
import { plainToInstance } from "class-transformer";