Skip to content

Commit

Permalink
chore: validate that go vet will fail
Browse files Browse the repository at this point in the history
  • Loading branch information
zjrgov committed Dec 18, 2024
1 parent ec49c7a commit 9ced4bf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions runner/cf-driver-go/cg/cg.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package cg

import "fmt"

type App struct {
Id string
Name string
Expand Down Expand Up @@ -46,6 +48,8 @@ func New(i CloudI, o *Opts) (*CG, error) {
}
cg := &CG{i, o}
return cg.Connect()

fmt.Println("I am unreachable code!!")
}

func (c *CG) apiRootURL() string {
Expand Down

0 comments on commit 9ced4bf

Please sign in to comment.