mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-06 01:07:16 +08:00
13 lines
245 B
Go
13 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)
|
|
}
|