aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-09-02 02:10:45 -0700
committerFuwn <[email protected]>2021-09-02 02:10:45 -0700
commit5514bd176662c62474c17b5f14c4d7795d465cf6 (patch)
tree8cb79882d15c0799251ad753db0ff2154bd211e1
parentchore(git): ignore ide directory (diff)
downloadcapybara-5514bd176662c62474c17b5f14c4d7795d465cf6.tar.xz
capybara-5514bd176662c62474c17b5f14c4d7795d465cf6.zip
refactor(capybara): remove redundant types
-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:")