Skip to content

Commit

Permalink
Updating module name of go-sql to github.com/google/sqlcommenter/go/d…
Browse files Browse the repository at this point in the history
…atabase/sql (#166)
  • Loading branch information
Thiyagu55 committed Sep 30, 2022
1 parent 7ba7ca1 commit 408a09e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go-sql-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:

- name: Build
run: go build -v ./...
working-directory: ./go/go-sql
working-directory: ./go/database/sql

- name: Test go-sql
run: go test -v ./...
working-directory: ./go/go-sql
working-directory: ./go/database/sql

gofmt:
runs-on: ubuntu-latest
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion go/go-sql/go-sql.go → go/database/sql/go-sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package gosql
package sql

import (
"context"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package gosql
package sql

import (
"context"
Expand Down
8 changes: 5 additions & 3 deletions go/go-sql/go.mod → go/database/sql/go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
module google.com/sqlcommenter/gosql
module github.com/google/sqlcommenter/go/database/sql

go 1.19

require go.opentelemetry.io/otel/sdk v1.10.0
require (
github.com/google/sqlcommenter/go/core v0.0.1-beta
go.opentelemetry.io/otel/sdk v1.10.0
)

require (
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/google/sqlcommenter/go/core v0.0.1-beta // indirect
go.opentelemetry.io/otel v1.10.0 // indirect
golang.org/x/sys v0.0.0-20220927170352-d9d178bc13c6 // indirect
)
Expand Down
File renamed without changes.

0 comments on commit 408a09e

Please sign in to comment.