bottin-agenda/sql/sql.go

10 lines
112 B
Go

package sql
import _ "embed"
//go:embed schema.sql
var schema string
func Schema() string {
return schema
}