github.com/octohelm/cuekit@v0.0.0-20240424021256-e7df8d743066/pkg/mod/module/types.go (about) 1 package module 2 3 import "cuelang.org/go/mod/module" 4 5 type Version = module.Version 6 7 func NewVersion(path string, version string) (Version, error) { 8 return module.NewVersion(path, version) 9 } 10 11 type SourceLoc = module.SourceLoc