Rename go.mod module name according to git path
All checks were successful
CI / release-test (push) Successful in 6s

This commit is contained in:
wispem-wantex 2025-07-12 12:29:28 -07:00
parent 378b86b7f1
commit 1b04b71d9d
4 changed files with 5 additions and 5 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module gas_stack module git.offline-twitter.com/offline-labs/gas-stack
go 1.22.5 go 1.22.5

View File

@ -9,7 +9,7 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"gas_stack/pkg/db" "git.offline-twitter.com/offline-labs/gas-stack/pkg/db"
) )
func TestCreateAndConnectToDB(t *testing.T) { func TestCreateAndConnectToDB(t *testing.T) {

View File

@ -1,13 +1,13 @@
package schema package schema
import ( import (
"gas_stack/pkg/textutils"
"strings" "strings"
"github.com/jinzhu/inflection" "github.com/jinzhu/inflection"
"github.com/jmoiron/sqlx" "github.com/jmoiron/sqlx"
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"
"git.offline-twitter.com/offline-labs/gas-stack/pkg/textutils"
) )
// InitDB creates an in-memory DB from a given schema string. // InitDB creates an in-memory DB from a given schema string.

View File

@ -7,7 +7,7 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"gas_stack/pkg/schema" "git.offline-twitter.com/offline-labs/gas-stack/pkg/schema"
) )
func TestParseSchema(t *testing.T) { func TestParseSchema(t *testing.T) {