aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/startBrowser.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/startBrowser.go')
-rw-r--r--cmd/web/startBrowser.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/cmd/web/startBrowser.go b/cmd/web/startBrowser.go
deleted file mode 100644
index 0184055..0000000
--- a/cmd/web/startBrowser.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package main
-
-import (
- "os/exec"
-)
-
-func startBrowser(url string) {
- command := BrowserCommand(url)
-
- c := exec.Command(command[0], command[1:]...)
- Logger.Printf("Running command: %s result: %v", command, c.Run())
- return
-}