kinesis-consumer/manifest.go

11 lines
169 B
Go
Raw Normal View History

package connector
type Entry struct {
Url string `json:"url"`
Mandatory bool `json:"mandatory"`
}
type Manifest struct {
Entries []Entry `json:"entries"`
}