add all_lessons

This commit is contained in:
2023-01-11 02:00:07 +07:00
parent 78705f95ea
commit 6325033fdf
8 changed files with 66 additions and 104 deletions
+2 -1
View File
@@ -4,9 +4,10 @@ import (
"fmt"
"student_bot/date"
"student_bot/parser"
"time"
)
func main() {
lessons := parser.ParseByDay(date.Today())
lessons := parser.ParseByDay(date.Today(-48*time.Hour))
fmt.Println(lessons)
}