Files
pgson/query.go
2025-11-06 17:10:12 +01:00

15 lines
279 B
Go

package pgson
import (
"git.secnex.io/secnex/pgson/build"
"git.secnex.io/secnex/pgson/schema"
)
func CreateTable(schema *schema.Table) (*string, error) {
return build.CreateTable(schema)
}
func Insert(schema *schema.Table) (*string, error) {
return build.Insert(schema)
}