mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-13 10:04:15 +00:00
7 lines
107 B
Go
7 lines
107 B
Go
|
|
package providers
|
||
|
|
|
||
|
|
type NotificationProvider interface {
|
||
|
|
CanHandleMessage() bool
|
||
|
|
HandleMessage() error
|
||
|
|
}
|