export Status

This commit is contained in:
Jeff Carr 2024-02-17 15:49:12 -06:00
parent 0e26f2024a
commit 4d1301288e
1 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,11 @@ func (rs *RepoStatus) String() string {
// returns the go path for the repo. "go.wit.com/apps/autotypist"
func (rs *RepoStatus) GoName() string {
return rs.GoPath()
}
// not sure which name is easier to remember. probably this one
func (rs *RepoStatus) GoPath() string {
return rs.goSrcPath.String()
}