1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00

25 lines
379 B
Go
Raw Normal View History

2017-08-05 18:35:52 -07:00
package storage
2017-07-22 22:08:38 -07:00
2017-07-31 21:51:21 -07:00
import "time"
2017-07-22 22:08:38 -07:00
type Quality string
type Format string
const (
HighQuality = Quality("high")
LowQuality = Quality("low")
AudioFormat = Format("audio")
VideoFormat = Format("video")
)
type Feed struct {
2017-07-31 21:51:21 -07:00
Id int64
HashId string
UserId string
URL string
PageSize int
Quality Quality
Format Format
LastAccess time.Time
2017-07-22 22:08:38 -07:00
}