feat:#7 extracted ical-service in own microservice

This commit is contained in:
Elmar Kresse
2024-05-26 01:53:46 +02:00
parent ded7fc2894
commit 2f55076e36
25 changed files with 2515 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package model
type Module struct {
UUID string `db:"uuid" json:"uuid"`
Name string `db:"Name" json:"name"`
Course string `db:"course" json:"course"`
Prof string `db:"prof" json:"prof"`
Semester string `db:"semester" json:"semester"`
Events Events `json:"events"`
}
type Modules []Module