add first ical implementation

This commit is contained in:
Elmar Kresse
2023-08-24 19:53:46 +02:00
parent 0686b9397f
commit 075bf3c899
13 changed files with 447 additions and 19 deletions

View File

@@ -7,10 +7,10 @@ type SeminarGroup struct {
Course string
Faculty string
FacultyId string
Events []Events
Events []Event
}
type Events struct {
type Event struct {
Day string
Week string
Start string
@@ -21,4 +21,5 @@ type Events struct {
Rooms string
Notes string
BookedAt string
Semester string
}