indiescrobble/services/micropub/config.go

17 lines
333 B
Go
Raw Permalink Normal View History

2022-02-19 15:47:25 +00:00
package micropub
type MicroPubPostType struct{
Name string
Type string
}
type MicroPubSyndicateTarget struct{
Name string
Uid string
}
type MicroPubConfig struct{
MediaEndpoint string `json:"media-endpoint"`
PostTypes []MicroPubPostType `json:"post-types"`
SyndicateTargets []MicroPubSyndicateTarget `json:"syndicate-to"`
}