13 lines
157 B
Go
13 lines
157 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"student_bot/date"
|
|
"student_bot/parser"
|
|
)
|
|
|
|
func main() {
|
|
lessons := parser.ParseByDay(date.Today())
|
|
fmt.Println(lessons)
|
|
}
|