d198a1d23f
Signed-off-by: Michael Mayer <michael@photoprism.app>
12 lines
245 B
Go
12 lines
245 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
)
|
|
|
|
// Report represents a report table with title and options.
|
|
type Report struct {
|
|
Title string
|
|
NoWrap bool
|
|
Report func(*config.Config) ([][]string, []string)
|
|
}
|