open-vault/vendor/github.com/aerospike/aerospike-client-go/udf.go

12 lines
211 B
Go
Raw Normal View History

package aerospike
// UDF carries information about UDFs on the server
type UDF struct {
// Filename of the UDF
Filename string
// Hash digest of the UDF
Hash string
// Language of UDF
Language Language
}