nidus-sync/db/query/publicreport/subscribe_phone.go
Eli Ribble 7237f5f666
Some checks failed
/ golint (push) Failing after 3m50s
Move internal references to new source hosting
2026-05-19 15:33:57 +00:00

18 lines
648 B
Go

package publicreport
import (
"context"
//"time"
//"github.com/Gleipnir-Technology/jet/postgres"
"source.gleipnir.technology/Gleipnir/nidus-sync/db"
"source.gleipnir.technology/Gleipnir/nidus-sync/db/gen/nidus-sync/publicreport/model"
"source.gleipnir.technology/Gleipnir/nidus-sync/db/gen/nidus-sync/publicreport/table"
)
func SubscribePhoneInsert(ctx context.Context, txn db.Ex, m model.SubscribePhone) (model.SubscribePhone, error) {
statement := table.SubscribePhone.INSERT(table.SubscribePhone.AllColumns).
MODEL(m).
RETURNING(table.SubscribePhone.AllColumns)
return db.ExecuteOneTx[model.SubscribePhone](ctx, txn, statement)
}