mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 03:07:31 +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"`
|
|
}
|