schet/pkg/input/conf/config.go

15 строки
226 Б
Go

package conf
type Config struct {
Доходы []Доход `json:"Доходы"`
}
type Доход struct {
Сумма float64
Квартал int
Клиент string
}
func NewConfig() *Config {
return &Config{}
}