mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
6 lines
191 B
Go
6 lines
191 B
Go
package entity
|
|
|
|
import "regexp"
|
|
|
|
// LensModelIgnore is a regular expression that matches lens model substrings to be ignored.
|
|
var LensModelIgnore = regexp.MustCompile(`(?i)\sback.*camera\s`)
|