photoprism/internal/commands/report.go
Michael Mayer d198a1d23f Security: Improve rate limit and HTTP proxy configuration #98
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-10-12 14:57:33 +02:00

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)
}