bd79fbafb3
Updated the `Serve` function so these can be added back into Vault
12 lines
274 B
Go
12 lines
274 B
Go
package gocb
|
|
|
|
// Version returns a string representation of the current SDK version.
|
|
func Version() string {
|
|
return goCbVersionStr
|
|
}
|
|
|
|
// Identifier returns a string representation of the current SDK identifier.
|
|
func Identifier() string {
|
|
return "gocb/" + goCbVersionStr
|
|
}
|