2018-10-31 02:42:54 +01:00
|
|
|
/*
|
2019-12-05 19:21:35 +01:00
|
|
|
Package form contains tagged structs for input value validation.
|
2018-10-31 02:42:54 +01:00
|
|
|
|
2018-11-06 19:02:03 +01:00
|
|
|
Additional information can be found in our Developer Guide:
|
|
|
|
|
|
|
|
https://github.com/photoprism/photoprism/wiki
|
2018-10-31 02:42:54 +01:00
|
|
|
*/
|
2019-12-05 19:21:35 +01:00
|
|
|
package form
|
2020-05-23 20:58:58 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/photoprism/photoprism/internal/event"
|
|
|
|
)
|
|
|
|
|
|
|
|
var log = event.Log
|