mirror of
https://github.com/lukaszraczylo/traefikoidc.git
synced 2026-06-06 22:49:43 +00:00
a750c4f5b9
* Size computation for allocation may overflow Performing calculations involving the size of potentially large strings or slices can result in an overflow (for signed integer types) or a wraparound (for unsigned types). An overflow causes the result of the calculation to become negative, while a wraparound results in a small (positive) number.
7 lines
101 B
Go
7 lines
101 B
Go
package redis
|
|
|
|
// Version is the current release version.
|
|
func Version() string {
|
|
return "9.17.2"
|
|
}
|