package queries

import _ "embed"

//go:embed schema.sql
var sqlSchema string

func SQLSchema() string {
	return sqlSchema
}