github.com/PDOK/gokoala@v0.50.6/internal/ogc/features/datasources/geopackage/backend_cloud_windows.go (about) 1 //go:build windows 2 3 package geopackage 4 5 import ( 6 "log" 7 8 "github.com/PDOK/gokoala/config" 9 ) 10 11 // Dummy implementation to make compilation on window work. 12 func newCloudBackedGeoPackage(_ *config.GeoPackageCloud) geoPackageBackend { 13 log.Fatalf("Cloud backed GeoPackage isn't supported on windows") 14 return nil 15 }