feat: begin working on the categorize

This commit is contained in:
DaanSelen
2026-04-23 16:57:58 +02:00
parent 417cecf43f
commit 24be1cedeb
6 changed files with 50 additions and 43 deletions
+19
View File
@@ -0,0 +1,19 @@
package utility
type MediaType string
// 0: unspecified
// 1: video
// 2: presentation
// 3: internet URL
const (
Video MediaType = "video"
Presentation MediaType = "presentation"
Internet MediaType = "internet"
Unspecified MediaType = "unspecified"
)
var (
videoFormats = []string{".mp4", ".mov", ".avi", ".mkv", ".webm", ".m4a"}
presentationFormats = []string{".pptx", ".ppt", ".key", ".odp"}
)