Files
photoprism/pkg/clean/ip.go
2025-10-19 21:08:48 +02:00

11 lines
252 B
Go

package clean
import (
"github.com/photoprism/photoprism/pkg/http/header"
)
// IP returns the sanitized and normalized network address if it is valid, or the default otherwise.
func IP(s, defaultIp string) string {
return header.IP(s, defaultIp)
}