Skip to content

Commit d8933c3

Browse files
committed
chore: Optimize imports
1 parent 923c17b commit d8933c3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

main.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ package main
33
import (
44
"flag"
55
"fmt"
6-
"github.com/rm3l/gh-dev-branch/pkg/branch"
7-
"github.com/rm3l/gh-dev-branch/pkg/issue"
86
"log"
97
"os"
8+
9+
"github.com/rm3l/gh-dev-branch/pkg/branch"
10+
"github.com/rm3l/gh-dev-branch/pkg/issue"
1011
)
1112

1213
func main() {

pkg/branch/branch_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package branch
22

33
import (
4-
"github.com/google/go-cmp/cmp"
54
"testing"
5+
6+
"github.com/google/go-cmp/cmp"
67
)
78

89
func TestGenerateName(t *testing.T) {

0 commit comments

Comments
 (0)