Initial album support

This commit is contained in:
video-prize-ranch
2022-01-17 15:23:04 -05:00
parent 0c5f9bc6b5
commit 579cbc84c6
26 changed files with 1104 additions and 9098 deletions

12
types/Album.go Normal file
View File

@@ -0,0 +1,12 @@
package types
type Album struct {
Id string
Title string
Views int64
Upvotes int64
Downvotes int64
CreatedAt string
UpdatedAt string
Media []string
}