Chromium Code Reviews| Index: fuzzer/go/config/config.go |
| diff --git a/fuzzer/go/config/config.go b/fuzzer/go/config/config.go |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e4bf075330a22fc14191d3cac7c14f1ad82de301 |
| --- /dev/null |
| +++ b/fuzzer/go/config/config.go |
| @@ -0,0 +1,10 @@ |
| +package config |
| + |
| +type FrontEndConfig struct { |
|
jcgregorio
2015/02/11 12:49:11
This is already in the the 'config' package so you
humper
2015/02/11 13:17:50
Done.
|
| + Port string |
| + ResourcePath string |
| +} |
| + |
| +var FuzzerConfig struct { |
|
jcgregorio
2015/02/11 12:49:11
Same here.
type Fuzzer struct {
humper
2015/02/11 13:17:50
Done.
|
| + FrontEnd FrontEndConfig |
| +} |