Skip to content

Commit

Permalink
fix!: update go module name to include github.com
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelblijleven committed May 11, 2022
1 parent 08dc336 commit 31e637c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/assignRelease.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package cmd

import (
"errors"
"jira-helper/pkg"
"github.com/marcelblijleven/jira-helper/pkg"
"net/http"
"time"

Expand Down
2 changes: 1 addition & 1 deletion cmd/createAndAssign.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package cmd

import (
"errors"
"jira-helper/pkg"
"github.com/marcelblijleven/jira-helper/pkg"
"net/http"
"time"

Expand Down
2 changes: 1 addition & 1 deletion cmd/createRelease.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package cmd

import (
"jira-helper/pkg"
"github.com/marcelblijleven/jira-helper/pkg"
"net/http"
"time"

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module jira-helper
module github.com/marcelblijleven/jira-helper

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/
package main

import "jira-helper/cmd"
import "github.com/marcelblijleven/jira-helper/cmd"

func main() {
cmd.Execute()
Expand Down

0 comments on commit 31e637c

Please sign in to comment.