mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 11:12:21 +00:00
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package notification
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/rakyll/statik/fs"
|
|
"github.com/zitadel/logging"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
"github.com/zitadel/zitadel/internal/command"
|
|
"github.com/zitadel/zitadel/internal/notification/repository/eventsourcing"
|
|
_ "github.com/zitadel/zitadel/internal/notification/statik"
|
|
"github.com/zitadel/zitadel/internal/query"
|
|
)
|
|
|
|
type Config struct {
|
|
Repository eventsourcing.Config
|
|
}
|
|
|
|
func Start(config Config,
|
|
externalPort uint16,
|
|
externalSecure bool,
|
|
command *command.Commands,
|
|
queries *query.Queries,
|
|
dbClient *sql.DB,
|
|
assetsPrefix,
|
|
fileSystemPath string,
|
|
userEncryption crypto.EncryptionAlgorithm,
|
|
smtpEncryption crypto.EncryptionAlgorithm,
|
|
smsEncryption crypto.EncryptionAlgorithm,
|
|
) {
|
|
statikFS, err := fs.NewWithNamespace("notification")
|
|
logging.OnError(err).Panic("unable to start listener")
|
|
|
|
_, err = eventsourcing.Start(config.Repository, statikFS, externalPort, externalSecure, command, queries, dbClient, assetsPrefix, fileSystemPath, userEncryption, smtpEncryption, smsEncryption)
|
|
logging.OnError(err).Panic("unable to start app")
|
|
}
|