photoprism/internal/commands/commands.go

17 lines
364 B
Go
Raw Normal View History

/*
This package contains commands and flags used by the photoprism application.
2018-11-06 19:02:03 +01:00
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()
}