Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![docs](https://pkg.go.dev/badge/github.com/ngrok/sqlmw?status.svg)](https://pkg.go.dev/github.com/ngrok/sqlmw)
[![docs](https://pkg.go.dev/badge/github.com/distributit/sqlmw?status.svg)](https://pkg.go.dev/github.com/distributit/sqlmw)

# sqlmw

Expand Down Expand Up @@ -40,7 +40,7 @@ func (in *sqlInterceptor) StmtQueryContext(ctx context.Context, conn driver.Stmt
}
```

You may override any subset of methods to intercept in the `Interceptor` interface (https://godoc.org/github.com/ngrok/sqlmw#Interceptor):
You may override any subset of methods to intercept in the `Interceptor` interface (https://godoc.org/github.com/distributit/sqlmw#Interceptor):

```go
type Interceptor interface {
Expand Down Expand Up @@ -152,8 +152,8 @@ the power to implement advanced behaviors like caching, sharding, retries, etc.

## Go version support

Go versions 1.9 and forward are supported.
Go versions 1.24 and forward are supported.

## Fork

This project began by forking the code in github.com/luna-duclos/instrumentedsql, which itself is a fork of github.com/ExpansiveWorlds/instrumentedsql
This project began by forking the code in https://github.com/ngrok/sqlmw, which itself is a fork of github.com/luna-duclos/instrumentedsql, which itself is a fork of github.com/ExpansiveWorlds/instrumentedsql.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/ngrok/sqlmw
module github.com/distributit/sqlmw

go 1.13
go 1.24.0

require github.com/magefile/mage v1.15.0