20 lines
252 B
Go
20 lines
252 B
Go
package core
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
)
|
|
|
|
const (
|
|
openVar = "{{"
|
|
closeVar = "}}"
|
|
)
|
|
|
|
var (
|
|
errNotFound = errors.New("not found in prepared statements")
|
|
)
|
|
|
|
func keyExists(ct context.Context, key contextkey) bool {
|
|
return ct.Value(key) != nil
|
|
}
|