photoprism/internal/commands/commands.go
2019-06-30 05:38:39 +02:00

17 lines
364 B
Go

/*
This package contains commands and flags used by the photoprism application.
Additional information concerning the command-line interface can be found in our Developer Guide:
https://github.com/photoprism/photoprism/wiki/Commands
*/
package commands
import "github.com/sirupsen/logrus"
var log *logrus.Logger
func init() {
log = logrus.StandardLogger()
}