14 lines
180 B
Go
14 lines
180 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"student_bot/date"
|
|
"student_bot/parser"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
lessons := parser.ParseByDay(date.Today(-48 * time.Hour))
|
|
fmt.Println(lessons)
|
|
}
|