mirror of
https://github.com/writeas/writeas-cli
synced 2025-07-26 23:08:16 +00:00

adds subcommand colls lists collections for authenticated user supports -url flag for listing collection URLs
10 lines
189 B
Go
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
|
|
}
|