mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 08:47:12 +08:00
17 lines
282 B
Go
17 lines
282 B
Go
/*
|
|
This package contains the PhotoPrism REST api.
|
|
|
|
Additional information can be found in our Developer Guide:
|
|
|
|
https://github.com/photoprism/photoprism/wiki
|
|
*/
|
|
package api
|
|
|
|
import "github.com/sirupsen/logrus"
|
|
|
|
var log *logrus.Logger
|
|
|
|
func init() {
|
|
log = logrus.StandardLogger()
|
|
}
|