Skip to content

Commit

Permalink
Remove extraneous print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
carpeliam committed May 5, 2021
1 parent efb26b4 commit a342a60
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions adapters/browser.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package adapters

import (
"fmt"
"os/exec"

"github.com/git-story-branch/git-story-branch/usecases"
Expand All @@ -10,12 +9,9 @@ import (
type Browser struct{}

func (browser Browser) OpenURL(url string) (*exec.Cmd, error) {
fmt.Println("url")
fmt.Println(url)
cmd := exec.Command("open", url)
error := cmd.Start()
return cmd, error
// return .Start()
}

func NewBrowser() usecases.Browser {
Expand Down

0 comments on commit a342a60

Please sign in to comment.