1package gocb
2
3// Version returns a string representation of the current SDK version.
4func Version() string {
5	return goCbVersionStr
6}
7
8// Identifier returns a string representation of the current SDK identifier.
9func Identifier() string {
10	return "gocb/" + goCbVersionStr
11}
12