15 lines
279 B
Go
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)
|
|
}
|