OLD | NEW |
---|---|
(Empty) | |
1 package config | |
2 | |
3 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.
| |
4 Port string | |
5 ResourcePath string | |
6 } | |
7 | |
8 var FuzzerConfig struct { | |
jcgregorio
2015/02/11 12:49:11
Same here.
type Fuzzer struct {
humper
2015/02/11 13:17:50
Done.
| |
9 FrontEnd FrontEndConfig | |
10 } | |
OLD | NEW |