mirror of
https://github.com/vbatts/srvdav.git
synced 2025-07-24 03:00:28 +00:00
12 lines
426 B
Go
12 lines
426 B
Go
package global
|
|
|
|
// This file defines accessible variables used to setup the caldav server.
|
|
|
|
import (
|
|
"github.com/samedi/caldav-go/data"
|
|
)
|
|
|
|
// The global storage used in the CRUD operations of resources. Default storage is the `FileStorage`.
|
|
var Storage data.Storage = new(data.FileStorage)
|
|
// Current caldav user. It is used to keep the info of the current user that is interacting with the calendar.
|
|
var User *data.CalUser
|