timetable-mgr/stations/check.go
Fred Boniface cd0f5c7003
All checks were successful
Go Test / test (push) Successful in 26s
Add stations modile
2024-06-29 21:54:32 +01:00

17 lines
168 B
Go

package stations
import "fmt"
func Check() {
run()
}
func run() {
data, data2, err := download()
if err != nil {
fmt.Println(err)
}
parseData(data, data2)
}