This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
spectator/list_entry.go
2020-09-28 20:27:28 -07:00

19 lines
266 B
Go

package main
import (
"git.cotugno.family/kevin/spectator/exhibit"
)
type ListEntry struct {
Value string
Attrs exhibit.Attributes
}
func (e ListEntry) String() string {
return e.Value
}
func (e ListEntry) Attributes() exhibit.Attributes {
return e.Attrs
}