fix schedule

This commit is contained in:
2022-04-25 13:16:30 +07:00
parent b68fedb1b6
commit 17e05636a5
3 changed files with 14 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
package main
import (
"fmt"
"student_bot/date"
"student_bot/parser"
)
func main() {
lessons := parser.ParseByDay(date.Today())
fmt.Println(lessons)
}