10 lines
135 B
Go
10 lines
135 B
Go
|
|
package config
|
||
|
|
|
||
|
|
type Brevo struct {
|
||
|
|
APIKey string `mapstructure:"api_key"`
|
||
|
|
}
|
||
|
|
|
||
|
|
func (b *Brevo) GetApiKey() string {
|
||
|
|
return b.APIKey
|
||
|
|
}
|