From 4d1301288ea031d159f193e77f95849a98d97582 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 17 Feb 2024 15:49:12 -0600 Subject: [PATCH] export Status --- common.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common.go b/common.go index 94e3a4b..4b2215a 100644 --- a/common.go +++ b/common.go @@ -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() }