2018-11-17 06:21:39 +01:00
|
|
|
/*
|
2019-05-06 23:18:10 +02:00
|
|
|
Package config contains filesystem related utility functions.
|
2018-11-17 06:21:39 +01:00
|
|
|
|
|
|
|
Additional information can be found in our Developer Guide:
|
|
|
|
|
|
|
|
https://github.com/photoprism/photoprism/wiki
|
|
|
|
*/
|
2019-05-06 23:18:10 +02:00
|
|
|
package util
|
2019-07-05 12:32:06 +02:00
|
|
|
|
2019-12-02 00:30:58 +01:00
|
|
|
import (
|
|
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
|
|
)
|
2019-07-05 12:32:06 +02:00
|
|
|
|
2019-12-10 16:58:01 +01:00
|
|
|
//go:generate go run gen.go
|
|
|
|
|
2019-12-02 00:30:58 +01:00
|
|
|
var log = event.Log
|