1
0
Fork 0

Files are moved out of pkg directory.

This commit is contained in:
Alexander Andreev 2023-01-16 04:25:04 +04:00
parent 4bb06cb2a1
commit 729e58fdca
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
14 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ import (
_ "embed"
"fmt"
"git.arav.top/Arav/justguestbook/pkg/guestbook"
"git.arav.top/Arav/justguestbook/guestbook"
_ "github.com/mattn/go-sqlite3"
"github.com/pkg/errors"
)

View File

@ -3,8 +3,8 @@ package sqlite_test
import (
"testing"
"git.arav.top/Arav/justguestbook/pkg/database/sqlite"
"git.arav.top/Arav/justguestbook/pkg/guestbook"
"git.arav.top/Arav/justguestbook/database/sqlite"
"git.arav.top/Arav/justguestbook/guestbook"
"github.com/pkg/errors"
)