feat: Basic polling

This commit is contained in:
2025-01-17 00:08:57 +03:00
commit 96ea6d6033
10 changed files with 174 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package schedule
type Lesson struct {
Subject string
SubjectShort string `json:"subject_short"`
}
type Day struct {
Weekday int
Date string
Lessons []Lesson
}
type Week struct {
Days []Day
}