Rename repository

This commit is contained in:
kardolus
2023-05-02 13:44:20 -04:00
parent 73f6d5faed
commit ec4219d706
7 changed files with 11 additions and 11 deletions

View File

@@ -4,8 +4,8 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/kardolus/chatgpt-poc/http"
"github.com/kardolus/chatgpt-poc/types"
"github.com/kardolus/chatgpt-cli/http"
"github.com/kardolus/chatgpt-cli/types"
)
const (

View File

@@ -5,8 +5,8 @@ import (
"errors"
"github.com/golang/mock/gomock"
_ "github.com/golang/mock/mockgen/model"
"github.com/kardolus/chatgpt-poc/client"
"github.com/kardolus/chatgpt-poc/types"
"github.com/kardolus/chatgpt-cli/client"
"github.com/kardolus/chatgpt-cli/types"
"testing"
. "github.com/onsi/gomega"
@@ -14,7 +14,7 @@ import (
"github.com/sclevine/spec/report"
)
//go:generate mockgen -destination=mocks_test.go -package=client_test github.com/kardolus/chatgpt-poc/http Caller
//go:generate mockgen -destination=mocks_test.go -package=client_test github.com/kardolus/chatgpt-cli/http Caller
var (
mockCtrl *gomock.Controller

View File

@@ -1,5 +1,5 @@
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/kardolus/chatgpt-poc/http (interfaces: Caller)
// Source: github.com/kardolus/chatgpt-cli/http (interfaces: Caller)
// Package client_test is a generated GoMock package.
package client_test