commons-go/probe/config/account.go

7 lines
152 B
Go
Raw Normal View History

2018-04-12 18:38:04 +09:00
package config
2018-04-12 15:07:36 +09:00
type Account struct {
2018-04-14 17:56:30 +09:00
Name string `required:"true" json:"name,omitempty"`
APIKey string `required:"true" json:"apiKey,omitempty"`
2018-04-12 15:07:36 +09:00
}