10 lines
135 B
Go
Raw Normal View History

2024-07-23 01:36:25 +07:00
package config
type Brevo struct {
APIKey string `mapstructure:"api_key"`
}
func (b *Brevo) GetApiKey() string {
return b.APIKey
}