package models type LibraryType int const ( LibraryTypeMovies LibraryType = iota LibraryTypeTV ) type LibraryInfo struct { Id string Path string Type LibraryType Size int64 NumFiles int }