mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 12:19:37 -06:00
18 lines
392 B
Go
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
|
|
}
|