refactor!: working WD-4 user discovery

This commit is contained in:
DevMiner 2024-08-20 22:43:26 +02:00
parent cf0053312d
commit 61891d891a
91 changed files with 12768 additions and 5562 deletions

View file

@ -36,6 +36,11 @@ func ValidColumn(column string) bool {
return false
}
var (
// URLValidator is a validator for the "url" field. It is called by the builders before save.
URLValidator func(string) error
)
// OrderOption defines the ordering options for the Image queries.
type OrderOption func(*sql.Selector)