mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
9 lines
207 B
Go
9 lines
207 B
Go
package backups_config
|
|
|
|
type BackupNotificationType string
|
|
|
|
const (
|
|
NotificationBackupFailed BackupNotificationType = "BACKUP_FAILED"
|
|
NotificationBackupSuccess BackupNotificationType = "BACKUP_SUCCESS"
|
|
)
|