strip-beats/utils/utils.go

14 lines
187 B
Go
Raw Normal View History

2023-09-06 18:46:09 -05:00
package utils
import (
"fmt"
p "path"
)
func GetShortPath(path string) string {
base := p.Base(path)
dir := p.Dir(path)
dir = p.Base(dir)
return fmt.Sprintf("%s/%s", dir, base)
}