1
0
mirror of https://github.com/writeas/writeas-cli synced 2025-07-26 23:08:16 +00:00
writeas-cli/api/collections.go
Rob Loranger 30ecad172a
add collection listing
adds subcommand colls
lists collections for authenticated user
supports -url flag for listing collection URLs
2019-06-07 09:44:29 -07:00

10 lines
189 B
Go

package api
// RemoteColl represents a collection of posts
// It is a reduced set of data from a go-writeas Collection
type RemoteColl struct {
Alias string
Title string
URL string
}