Skip to content

Commit 023c3b7

Browse files
committed
chore: update code formatting
1 parent 4894dde commit 023c3b7

10 files changed

Lines changed: 23 additions & 23 deletions

File tree

cmd/init.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"github.com/fatih/color"
99
"github.com/spf13/cobra"
1010

11-
"gitmit/assets"
12-
"gitmit/internal/config"
11+
"github.com/andev0x/gitmit/assets"
12+
"github.com/andev0x/gitmit/internal/config"
1313
)
1414

1515
var (

cmd/propose.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ import (
1010
"github.com/fatih/color"
1111
"github.com/spf13/cobra"
1212

13-
"gitmit/assets"
14-
"gitmit/internal/analyzer"
15-
"gitmit/internal/ai"
16-
"gitmit/internal/config"
17-
"gitmit/internal/formatter"
18-
"gitmit/internal/history"
19-
"gitmit/internal/parser"
20-
"gitmit/internal/templater"
13+
"github.com/andev0x/gitmit/assets"
14+
"github.com/andev0x/gitmit/internal/analyzer"
15+
"github.com/andev0x/gitmit/internal/ai"
16+
"github.com/andev0x/gitmit/internal/config"
17+
"github.com/andev0x/gitmit/internal/formatter"
18+
"github.com/andev0x/gitmit/internal/history"
19+
"github.com/andev0x/gitmit/internal/parser"
20+
"github.com/andev0x/gitmit/internal/templater"
2121
)
2222

2323
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module gitmit
1+
module github.com/andev0x/gitmit
22

33
go 1.23.0
44

internal/ai/ai_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"strings"
55
"testing"
66

7-
"gitmit/internal/analyzer"
7+
"github.com/andev0x/gitmit/internal/analyzer"
88
)
99

1010
func TestRenderPrompt(t *testing.T) {

internal/ai/ollama.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"net/http"
88
"time"
99

10-
"gitmit/internal/config"
10+
"github.com/andev0x/gitmit/internal/config"
1111
)
1212

1313
// OllamaRequest represents the request body for Ollama's /api/generate endpoint

internal/ai/prompt.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"strings"
77
"text/template"
88

9-
"gitmit/assets"
10-
"gitmit/internal/analyzer"
9+
"github.com/andev0x/gitmit/assets"
10+
"github.com/andev0x/gitmit/internal/analyzer"
1111
)
1212

1313
// PromptContext represents the data structure passed to the prompt template

internal/analyzer/analyzer.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"regexp"
77
"strings"
88

9-
"gitmit/internal/config"
10-
"gitmit/internal/history"
11-
"gitmit/internal/parser"
9+
"github.com/andev0x/gitmit/internal/config"
10+
"github.com/andev0x/gitmit/internal/history"
11+
"github.com/andev0x/gitmit/internal/parser"
1212
)
1313

1414
// CommitMessage represents the analyzed commit message components

internal/analyzer/analyzer_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package analyzer
22

33
import (
4-
"gitmit/internal/config"
5-
"gitmit/internal/parser"
4+
"github.com/andev0x/gitmit/internal/config"
5+
"github.com/andev0x/gitmit/internal/parser"
66
"testing"
77
)
88

internal/templater/templater.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"sort"
1111
"strings"
1212

13-
"gitmit/internal/analyzer"
14-
"gitmit/internal/history"
13+
"github.com/andev0x/gitmit/internal/analyzer"
14+
"github.com/andev0x/gitmit/internal/history"
1515
)
1616

1717
//go:embed templates.json

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"gitmit/cmd"
7+
"github.com/andev0x/gitmit/cmd"
88
)
99

1010
func main() {

0 commit comments

Comments
 (0)