get the basic caldav event data (in freaky XML)

This commit is contained in:
2026-07-27 22:10:48 -07:00
parent 6574cc1111
commit 60bbe43e57
2 changed files with 43 additions and 2 deletions
+1
View File
@@ -14,5 +14,6 @@ func main() {
for i := range len(calDavData.Calandars) {
fmt.Printf("Cal %d is named %s\n", i, calDavData.Calandars[i].DisplayName)
fmt.Printf("\tLink to cal: %s\n", calDavData.Calandars[i].Link)
calDavData.Calandars[i] = get_calandar_data(calDavData.Calandars[i], serverConfig.Username, serverConfig.Password)
}
}