This commit is contained in:
stefanodvx 2025-04-14 13:05:43 +02:00
parent 264c97183e
commit 3faede7b1c
74 changed files with 6228 additions and 1 deletions

View file

@ -0,0 +1,9 @@
package enums
type ExtractorCategory string
const (
ExtractorCategorySocial ExtractorCategory = "social"
ExtractorCategoryStreaming ExtractorCategory = "streaming"
ExtractorCategoryMusic ExtractorCategory = "music"
)