Added basic i18n

This commit is contained in:
2026-03-10 15:18:34 +08:00
parent 093a8745ac
commit 7d1de5f781
25 changed files with 660 additions and 105 deletions

View File

@@ -5,8 +5,9 @@ import (
)
func TestRouteStops(t *testing.T) {
_, err := getRouteStops()
if err != nil {
t.Error( err )
}
busStops, err := readBusStopsData()
_, err = getRouteStops(busStops)
if err != nil {
t.Error(err)
}
}