mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 20:08:02 +00:00
18 lines
391 B
Go
18 lines
391 B
Go
|
package email
|
||
|
|
||
|
import (
|
||
|
"github.com/zitadel/zitadel/internal/notification/channels/smtp"
|
||
|
"github.com/zitadel/zitadel/internal/notification/channels/webhook"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
ProviderConfig *Provider
|
||
|
SMTPConfig *smtp.Config
|
||
|
WebhookConfig *webhook.Config
|
||
|
}
|
||
|
|
||
|
type Provider struct {
|
||
|
ID string `json:"id,omitempty"`
|
||
|
Description string `json:"description,omitempty"`
|
||
|
}
|