This commit is contained in:
AdamKorcz 2025-03-31 01:38:40 +00:00 committed by GitHub
commit 9c21a508f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

6
fuzz.go Normal file
View file

@ -0,0 +1,6 @@
package viper
func FuzzGet(data []byte) int {
_ = Get(string(data))
return 1
}