verochka/parser/examples/main.go

14 lines
181 B
Go
Raw Permalink Normal View History

2022-04-25 06:16:30 +00:00
package main
import (
"fmt"
"student_bot/date"
"student_bot/parser"
2023-01-10 19:00:07 +00:00
"time"
2022-04-25 06:16:30 +00:00
)
func main() {
2023-01-10 19:00:07 +00:00
lessons := parser.ParseByDay(date.Today(-48*time.Hour))
2022-04-25 06:16:30 +00:00
fmt.Println(lessons)
}