You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have contributed to this issue in the playground repo and as discussed, the core issue appears to be that /gen/examples package has been made a submodule. This breaks the existing playground import structure.
I'm not an expert on the Go module system but I suspect that this is because go mod is searching https://gorm.io/gen/examples for a meta tag that should look something like
This url currently 404s and as a result the import:
gorm.io/gen/examples v0.3.26
fails to resolve and prevents running the playground. The playground can be run by checking out the gen project and using a replace directive but right now I think this is right solution.
The text was updated successfully, but these errors were encountered:
I have contributed to this issue in the playground repo and as discussed, the core issue appears to be that
/gen/examples
package has been made a submodule. This breaks the existing playground import structure.I'm not an expert on the Go module system but I suspect that this is because
go mod
is searchinghttps://gorm.io/gen/examples
for a meta tag that should look something likeThis url currently 404s and as a result the import:
fails to resolve and prevents running the playground. The playground can be run by checking out the
gen
project and using a replace directive but right now I think this is right solution.The text was updated successfully, but these errors were encountered: