gomvn/database/extend-artifact.go

8 lines
162 B
Go
Raw Permalink Normal View History

2024-03-15 15:13:09 +00:00
package database
import "strings"
func (a Artifact) GetPath() string {
return strings.Replace(a.MvnGroup, ".", "/", -1) + "/" + a.Artifact + "/" + a.Version
}