Files
Курнат Андрей 2315f25754 Initial QSfera import
2026-06-07 10:20:04 +03:00

18 lines
392 B
Go

package service
import "time"
var (
_globalEventsKey = "global-events"
)
// DeprovisionData is the data needed for the deprovision global event
type DeprovisionData struct {
// The deprovision date
DeprovisionDate time.Time `json:"deprovision_date"`
// The Format of the deprvision date
DeprovisionFormat string
// The user who stored the deprovision message
Deprovisioner string
}