diff options
Diffstat (limited to 'internal')
-rw-r--r-- | internal/sqlutil/postgres.go | 1 | ||||
-rw-r--r-- | internal/sqlutil/postgres_wasm.go | 1 | ||||
-rw-r--r-- | internal/sqlutil/trace_driver.go | 1 | ||||
-rw-r--r-- | internal/sqlutil/trace_driver_wasm.go | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/internal/sqlutil/postgres.go b/internal/sqlutil/postgres.go index 41a5508a..5e656b1d 100644 --- a/internal/sqlutil/postgres.go +++ b/internal/sqlutil/postgres.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build !wasm // +build !wasm package sqlutil diff --git a/internal/sqlutil/postgres_wasm.go b/internal/sqlutil/postgres_wasm.go index c45842f0..34086f45 100644 --- a/internal/sqlutil/postgres_wasm.go +++ b/internal/sqlutil/postgres_wasm.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build wasm // +build wasm package sqlutil diff --git a/internal/sqlutil/trace_driver.go b/internal/sqlutil/trace_driver.go index f123b1e4..b7bb3676 100644 --- a/internal/sqlutil/trace_driver.go +++ b/internal/sqlutil/trace_driver.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build !wasm // +build !wasm package sqlutil diff --git a/internal/sqlutil/trace_driver_wasm.go b/internal/sqlutil/trace_driver_wasm.go index a3c163f5..51b60c3c 100644 --- a/internal/sqlutil/trace_driver_wasm.go +++ b/internal/sqlutil/trace_driver_wasm.go @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build wasm // +build wasm package sqlutil |