mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-25 14:00:26 -05:00
11 lines
221 B
Go
11 lines
221 B
Go
package versionmap
|
|
|
|
func (l *WorkspaceLock) GetModList(rootName string) string {
|
|
if len(l.InstallCache) == 0 {
|
|
return "No mods installed"
|
|
}
|
|
|
|
tree := l.InstallCache.GetDependencyTree(rootName)
|
|
return tree.String()
|
|
}
|