mirror of
https://github.com/spf13/viper
synced 2025-04-29 00:37:17 +00:00
7 lines
82 B
Go
7 lines
82 B
Go
|
package viper
|
||
|
|
||
|
func FuzzGet(data []byte) int {
|
||
|
_ = Get(string(data))
|
||
|
return 1
|
||
|
}
|