- update
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

master v1.0.17
李光春 2 years ago
parent 54e09848b6
commit dfe018633b

@ -1,3 +1,3 @@
package goip
const Version = "1.0.16"
const Version = "1.0.17"

@ -0,0 +1,13 @@
package goip
import "testing"
func TestVersion(t *testing.T) {
t.Log(Version)
}
func BenchmarkVersion(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = Version
}
}
Loading…
Cancel
Save