All checks were successful
CI/CD — Build & Deploy / Build & Deploy (push) Successful in 29s
Backend: 5 modules (auth, user, work, list, health), AniList GraphQL proxy, SuperOAuth PKCE introspection, XP system, migrations TypeORM. Frontend: SvelteKit adapter-node, PWA manifest, dark theme, pages home/search/list/profile/callback. Infra: CI/CD Gitea vps-runner, Apache vhost SSL, pm2 sakuin-backend + sakuin-frontend, port 4002. License: BSL 1.1 (Apache 2.0 en 2028).
15 lines
469 B
TypeScript
15 lines
469 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { Work } from './work.entity';
|
|
import { WorkController } from './work.controller';
|
|
import { WorkService } from './work.service';
|
|
import { AniListService } from './anilist.service';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([Work])],
|
|
controllers: [WorkController],
|
|
providers: [WorkService, AniListService],
|
|
exports: [WorkService],
|
|
})
|
|
export class WorkModule {}
|