Complete alpha newStations data, deactivate CORPUS Stations data

This commit is contained in:
Fred Boniface
2024-06-30 19:29:41 +01:00
parent 358e69bec7
commit fed0208291
5 changed files with 145 additions and 18 deletions

View File

@@ -10,6 +10,7 @@ import (
"git.fjla.uk/owlboard/timetable-mgr/corpus"
"git.fjla.uk/owlboard/timetable-mgr/helpers"
"git.fjla.uk/owlboard/timetable-mgr/log"
"git.fjla.uk/owlboard/timetable-mgr/stations"
"go.uber.org/zap"
)
@@ -40,7 +41,7 @@ func runTicker(cfg *helpers.Configuration, stop <-chan struct{}) {
log.Debug("Running background tasks")
go cif.CheckCif(cfg)
go corpus.CheckCorpus(cfg)
//go stations.Check()
go stations.Check()
}
}
}