package config type Brevo struct { APIKey string `mapstructure:"api_key"` } func (b *Brevo) GetApiKey() string { return b.APIKey }