Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomper-TE committed Dec 13, 2023
1 parent 6f0c800 commit 21169eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import (
//go:generate go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs

func main() {
var debugModeTest bool
var debugModeTest2 bool

flag.BoolVar(&debugModeTest, "debug", false, "set to true to run the provider with support for debuggers like delve")
flag.BoolVar(&debugModeTest2, "debug", false, "set to true to run the provider with support for debuggers like delve")
flag.Parse()
opts := &plugin.ServeOpts{
Debug: debugModeTest,
Debug: debugModeTest2,
ProviderAddr: "registry.terraform.io/thousandeyes/thousandeyes",
ProviderFunc: thousandeyes.New(),
}
Expand Down

0 comments on commit 21169eb

Please sign in to comment.