16 lines
178 B
Go
16 lines
178 B
Go
|
package cachedb
|
||
|
|
||
|
import (
|
||
|
_ "embed"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
//go:embed "_static/cache.schema.sql"
|
||
|
schemaBytes []byte
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
SelectTunnels string = ""
|
||
|
SelectTunnelById string = ""
|
||
|
)
|