agendas/queries/queries.go

11 lines
125 B
Go
Raw Normal View History

2024-12-30 19:13:05 -05:00
package queries
import _ "embed"
//go:embed schema.sql
var sqlSchema string
func SQLSchema() string {
return sqlSchema
}