331529fc94
* add an Aerospike storage backend * go mod vendor * add Aerospike storage configuration docs * review fixes * bump aerospike client to v3.1.1 * rename the defaultHostname variable * relocate the docs page
12 lines
211 B
Go
12 lines
211 B
Go
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
|
|
}
|