mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
9 lines
262 B
Go
9 lines
262 B
Go
package notification
|
|
|
|
import "github.com/uozi-tech/cosy"
|
|
|
|
var (
|
|
e = cosy.NewErrorScope("notification")
|
|
ErrNotifierNotFound = e.New(404001, "notifier not found")
|
|
ErrInvalidNotifierConfig = e.New(400001, "invalid notifier config")
|
|
)
|