timetable-mgr/stations/check.go

17 lines
168 B
Go
Raw Normal View History

2024-06-29 21:54:32 +01:00
package stations
import "fmt"
func Check() {
run()
}
func run() {
data, data2, err := download()
if err != nil {
fmt.Println(err)
}
parseData(data, data2)
}