Skip to content

Commit 1ae1d51

Browse files
committed
Updates to namespaces
1 parent 291aa19 commit 1ae1d51

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+83
-75
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cmd: $(CMD_DIR)
2121

2222
test:
2323
@${GO} mod tidy
24-
@${GO} test -v ./pkg/...
24+
@${GO} test ./pkg/...
2525

2626
$(CMD_DIR): dependencies mkdir
2727
@echo Build cmd $(notdir $@)

README.md

Lines changed: 3 additions & 3 deletions
File renamed without changes.

pkg/client/client_test.go renamed to client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package client_test
33
import (
44
"testing"
55

6-
"github.com/mutablelogic/go-client/pkg/client"
6+
"github.com/mutablelogic/go-client"
77
"github.com/stretchr/testify/assert"
88
)
99

File renamed without changes.

cmd/cli/elevenlabs.go

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

9-
// Package imports
10-
"github.com/mutablelogic/go-client/pkg/client"
9+
// Packages
10+
"github.com/mutablelogic/go-client"
1111
"github.com/mutablelogic/go-client/pkg/elevenlabs"
1212
)
1313

cmd/cli/homeassistant.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
// Packages
5-
"github.com/mutablelogic/go-client/pkg/client"
5+
"github.com/mutablelogic/go-client"
66
"github.com/mutablelogic/go-client/pkg/homeassistant"
77
)
88

cmd/cli/ipify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
// Packages
5-
"github.com/mutablelogic/go-client/pkg/client"
5+
"github.com/mutablelogic/go-client"
66
"github.com/mutablelogic/go-client/pkg/ipify"
77
)
88

cmd/cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"path"
88

99
// Packages
10-
"github.com/mutablelogic/go-client/pkg/client"
10+
"github.com/mutablelogic/go-client"
1111
"github.com/pkg/errors"
1212
)
1313

cmd/cli/mistral.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
// Package imports
5-
"github.com/mutablelogic/go-client/pkg/client"
5+
"github.com/mutablelogic/go-client"
66
"github.com/mutablelogic/go-client/pkg/mistral"
77
"github.com/mutablelogic/go-client/pkg/openai/schema"
88
)

0 commit comments

Comments
 (0)