├── .idea ├── go-malwarebazaar.iml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── api ├── errors.go ├── responses.go ├── routes.go └── types.go ├── bazaar.go ├── client ├── download.go ├── generic.go ├── metadata.go └── query.go ├── go.mod └── go.sum /.idea/go-malwarebazaar.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |