mirror of
https://github.com/vbatts/srvdav.git
synced 2025-08-01 06:50:29 +00:00
vendoring and caldav
This commit is contained in:
parent
a06aa900b7
commit
fd9092e5ab
96 changed files with 14832 additions and 5 deletions
12
vendor/github.com/samedi/caldav-go/global/global.go
generated
vendored
Normal file
12
vendor/github.com/samedi/caldav-go/global/global.go
generated
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue