Skip to content

Commit

Permalink
Use String for category enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Morea committed Dec 10, 2023
1 parent 381e47c commit 7d1fe39
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Find Unique Titles/src/trackers/tracker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ export interface Torrent {
}

export enum Category {
TV,
MOVIE,
MUSIC,
BOOK,
AUDIOBOOK,
SPORT,
ANIME,
MV,
LIVE_PERFORMANCE,
STAND_UP,
DOCUMENTARY,
GAME,
XXX,
OTHER,
TV = "TV",
MOVIE = "MOVIE",
MUSIC = "MUSIC",
BOOK = "BOOK",
AUDIOBOOK = "AUDIOBOOK",
SPORT = "SPORT",
ANIME = "ANIME",
MV = "MV",
LIVE_PERFORMANCE = "PERFORMANCE",
STAND_UP = "UP",
DOCUMENTARY = "DOCUMENTARY",
GAME = "GAME",
XXX = "XXX",
OTHER = "OTHER",
}

export interface Request {
Expand Down

0 comments on commit 7d1fe39

Please sign in to comment.