lazydocker/pkg/commands/project.go
2022-11-09 21:21:35 +11:00

9 lines
152 B
Go

package commands
type Project struct {
Name string
}
func (self *Project) GetDisplayStrings(isFocused bool) []string {
return []string{self.Name}
}