mirror of
https://github.com/marcopiovanello/yt-dlp-web-ui.git
synced 2026-07-25 06:54:30 +00:00
9d3861ab39
Code refactoring
14 lines
187 B
Go
14 lines
187 B
Go
package data
|
|
|
|
import "time"
|
|
|
|
type ArchiveEntry struct {
|
|
Id string
|
|
Title string
|
|
Path string
|
|
Thumbnail string
|
|
Source string
|
|
Metadata string
|
|
CreatedAt time.Time
|
|
}
|