timetable-mgr/pis/update.go

12 lines
298 B
Go
Raw Normal View History

2024-05-02 15:35:00 +01:00
package pis
// Downloads the release tarball, extracts then applies to database
func runUpdate(tarballUrl string) error {
2024-10-15 19:39:11 +01:00
// Download and extract tarball
// load PIS yaml files
// Run code deduplication
// Replace database collection with new data
// Ensure indeces are present
2024-05-02 15:35:00 +01:00
return nil
}