Files
Novault-backend/internal/models/constants.go

10 lines
200 B
Go

package models
// Notification Channel Constants
const (
NotificationChannelSMS = "sms"
NotificationChannelEmail = "email"
NotificationChannelBoth = "both"
NotificationChannelNone = "none"
)