import { createJob } from "@apricote/nest-pg-boss"; export type ICrawlerSupervisorJob = {}; export const CrawlerSupervisorJob = createJob( "spotify-crawler-supervisor", ); export type IUpdateSpotifyLibraryJob = {}; export const UpdateSpotifyLibraryJob = createJob( "update-spotify-library", ); export type IImportSpotifyJob = { userID: string }; export const ImportSpotifyJob = createJob("import-spotify");