bottin-agenda/sql/sql.go

11 lines
112 B
Go
Raw Normal View History

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