commons-go/probe/config/account.go

7 lines
132 B
Go
Raw Normal View History

2018-04-12 09:38:04 +00:00
package config
2018-04-12 06:07:36 +00:00
type Account struct {
2018-04-12 09:54:44 +00:00
Name string `required:"true" json:"name"`
APIKey string `required:"true" json:"apiKey"`
2018-04-12 06:07:36 +00:00
}