mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 00:24:07 +08:00
11 lines
142 B
Go
11 lines
142 B
Go
// +build gofuzz
|
|
|
|
package semver
|
|
|
|
func Fuzz(data []byte) int {
|
|
if _, err := NewVersion(string(data)); err != nil {
|
|
return 0
|
|
}
|
|
return 1
|
|
}
|