feat(train): add new command to interact with aws and train models
This commit is contained in:
18
vendor/github.com/aws/aws-sdk-go-v2/internal/ini/fuzz.go
generated
vendored
Normal file
18
vendor/github.com/aws/aws-sdk-go-v2/internal/ini/fuzz.go
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
//go:build gofuzz
|
||||
// +build gofuzz
|
||||
|
||||
package ini
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
)
|
||||
|
||||
func Fuzz(data []byte) int {
|
||||
b := bytes.NewReader(data)
|
||||
|
||||
if _, err := Parse(b); err != nil {
|
||||
return 0
|
||||
}
|
||||
|
||||
return 1
|
||||
}
|
||||
Reference in New Issue
Block a user