7 lines
100 B
Go
7 lines
100 B
Go
package config
|
|
|
|
type Account struct {
|
|
Name string `json:"name"`
|
|
APIKey string `json:"apiKey"`
|
|
}
|