Skip to content

Commit

Permalink
Update import paths in examples (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisnovakovic authored Feb 19, 2024
1 parent 7fabb61 commit 4678b7c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/addlabel/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"syscall"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
"golang.org/x/term"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/basicauth/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"syscall"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/create/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"syscall"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
"golang.org/x/term"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/createwithcustomfields/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"syscall"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
"github.com/trivago/tgo/tcontainer"
"golang.org/x/term"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/do/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/ignorecerts/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"net/http"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/jql/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/newclient/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/pagination/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
)

// GetAllIssues will implement pagination of api and get all the issues.
Expand Down
2 changes: 1 addition & 1 deletion examples/renderedfields/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"syscall"

jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/searchpages/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"bufio"
"fmt"
jira "github.com/andygrunwald/go-jira"
jira "github.com/thought-machine/go-jira"
"golang.org/x/term"
"log"
"os"
Expand Down

0 comments on commit 4678b7c

Please sign in to comment.