mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-24 08:01:03 +00:00
9 lines
152 B
Go
9 lines
152 B
Go
package commands
|
|
|
|
type Project struct {
|
|
Name string
|
|
}
|
|
|
|
func (self *Project) GetDisplayStrings(isFocused bool) []string {
|
|
return []string{self.Name}
|
|
}
|