more module name updates

This commit is contained in:
James Tombleson 2024-04-05 17:51:02 -07:00
parent 4e4fee53bf
commit 935f8f5003
3 changed files with 11 additions and 8 deletions

View File

@ -3,7 +3,8 @@ package repositories
import (
"database/sql"
"errors"
"go-cook/api/domain"
"git.jamestombleson.com/jtom38/go-cook/api/domain"
)
type IRecipeTable interface {

View File

@ -4,9 +4,10 @@ import (
"database/sql"
"errors"
"fmt"
"go-cook/api/domain"
"time"
"git.jamestombleson.com/jtom38/go-cook/api/domain"
"github.com/huandu/go-sqlbuilder"
"golang.org/x/crypto/bcrypt"
)

View File

@ -2,11 +2,12 @@ package repositories_test
import (
"database/sql"
"go-cook/api/domain"
"go-cook/api/repositories"
"log"
"testing"
"git.jamestombleson.com/jtom38/go-cook/api/repositories"
"git.jamestombleson.com/jtom38/go-cook/api/domain"
"github.com/DATA-DOG/go-sqlmock"
_ "github.com/glebarez/go-sqlite"
)