mirror of
https://github.com/clastix/kamaji.git
synced 2026-03-03 18:21:17 +00:00
11 lines
191 B
Go
11 lines
191 B
Go
// Copyright 2022 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package sql
|
|
|
|
const (
|
|
defaultProtocol = "tcp"
|
|
firstPort = 1024
|
|
sqlErrorNoRows = "sql: no rows in result set"
|
|
)
|