package
1.1.6
Repository: https://github.com/speecan/util.git
Documentation: pkg.go.dev

# README

uuid array

refer to github.com/lib/pq

and using uuid package with github.com/google/uuid

using

type TestStruct struct {
	UUIDs uuidarray.UUIDArray `db:"ids"`
}

func (x *TestStruct) GetUUIDs() []uuid.UUID {
	return []uuid.UUID(x.UUIDs)
}

# Type aliases

UUIDArray represents a one-dimensional array of the PostgreSQL character types.