package main
import (
"fmt"
"student_bot/date"
"student_bot/parser"
)
func main() {
lessons := parser.ParseByDay(date.Today())
fmt.Println(lessons)
}