a74c76857d
Thanks to the latest version of go-webdav, this is now a thing. A lot of operations (like creating a calendar) are not yet supported. But the basics work fine. Note that multi-calendar means that different users can each have their own calenders. Resource sharing is not yet implemented either. Includes the adding of a lot of debug logs, as issues are otherwise pretty hard to figure out. The logging still needs to be made more consistent, and probably cleaned up a bit in some places.
23 lines
693 B
Modula-2
23 lines
693 B
Modula-2
module git.sr.ht/~sircmpwn/tokidoki
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/emersion/go-ical v0.0.0-20220601085725-0864dccc089f
|
|
github.com/emersion/go-imap v1.2.1
|
|
github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43
|
|
github.com/emersion/go-vcard v0.0.0-20230815062825-8fda7d206ec9
|
|
github.com/emersion/go-webdav v0.5.1-0.20240202164822-eaac65215b3a
|
|
github.com/go-chi/chi/v5 v5.0.10
|
|
github.com/msteinert/pam v1.2.0
|
|
github.com/rs/zerolog v1.31.0
|
|
)
|
|
|
|
require (
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/teambition/rrule-go v1.8.2 // indirect
|
|
golang.org/x/sys v0.16.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
)
|