hack(scaffolder): to get imports to work nicely with the current protobuf setup, we can slightly change the import rewrites in go modules to point to same place without error

This commit is contained in:
blam
2020-02-06 04:19:50 +01:00
parent c21ce9e768
commit 37ad61bb0d
+4 -3
View File
@@ -2,9 +2,10 @@ module github.com/spotify/backstage/scaffolder
go 1.13
replace github.com/spotify/backstage/proto => ../proto
replace github.com/spotify/backstage/backend/proto => ../proto
replace (
github.com/spotify/backstage/backend/proto => ./../proto
github.com/spotify/backstage/proto => ../proto
)
require (
github.com/golang/protobuf v1.3.3