commons-go/config/probe/account.go

7 lines
151 B
Go
Raw Normal View History

2018-04-26 07:37:59 +00:00
package probe
2018-04-12 06:07:36 +00:00
type Account struct {
2018-04-14 08:56:30 +00:00
Name string `required:"true" json:"name,omitempty"`
APIKey string `required:"true" json:"apiKey,omitempty"`
2018-04-12 06:07:36 +00:00
}