mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 07:11:01 +00:00
7 lines
200 B
Go
7 lines
200 B
Go
package presentation
|
|
|
|
import "github.com/jesseduffield/lazydocker/pkg/commands"
|
|
|
|
func GetVolumeDisplayStrings(volume *commands.Volume) []string {
|
|
return []string{volume.Volume.Driver, volume.Name}
|
|
}
|