aboutsummaryrefslogtreecommitdiff
path: root/capybara.go
diff options
context:
space:
mode:
Diffstat (limited to 'capybara.go')
-rw-r--r--capybara.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/capybara.go b/capybara.go
index 2e6c5be..dbd980a 100644
--- a/capybara.go
+++ b/capybara.go
@@ -526,9 +526,9 @@ func performIfEnv(key string, do func()) {
func main() {
var (
- bind string = ":8080"
- css string = defaultCSS
- external bool = false
+ bind = ":8080"
+ css = defaultCSS
+ external = false
)
opts, optind, err := getopt.Getopts(os.Args, "b:c:s:e:")