mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
10 lines
152 B
Go
10 lines
152 B
Go
//go:build !(unix || windows) || sqlite3_nosys
|
|
|
|
package util
|
|
|
|
import "context"
|
|
|
|
func withAllocator(ctx context.Context) context.Context {
|
|
return ctx
|
|
}
|