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..54fb4ac1413ffa941d8fb9bc451cef43c4f3ad12 |
| --- /dev/null |
| +++ b/fuzzer/go/config/config.go |
| @@ -0,0 +1,11 @@ |
| +package config |
| + |
| +type FrontEnd struct { |
| + Port string |
| + ResourcePath string |
| + GraphiteServer string |
| +} |
| + |
| +var Fuzzer struct { |
| + FrontEnd FrontEnd |
| +} |