2024-07-23 01:36:25 +07:00

10 lines
135 B
Go

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