This commit is contained in:
2023-02-10 15:51:04 +07:00
parent 9415ce4c37
commit 9a1a99985c
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -8,6 +8,6 @@ import (
)
func main() {
lessons := parser.ParseByDay(date.Today(-48*time.Hour))
lessons := parser.ParseByDay(date.Today(-48 * time.Hour))
fmt.Println(lessons)
}
+1 -1
View File
@@ -32,7 +32,7 @@ func parse() []Lesson {
l := Lesson{
Number: "",
TimeStart: event.Start,
TimeMsg: event.Start.Format("15:04") + " - " + event.End.Format("15:04"),
TimeMsg: event.Start.Format("15:04") + " - " + event.End.Format("15:04"),
Name: event.Summary,
User: event.Description,
Place: event.Location,