mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-05 23:26:46 +01:00
Mohammed Sohail
40cb86f522
* otx can nw be tracked at /api/track/:trackingId * moved queries to queries folder * fixed validation error check in ErrorHandler * added enum package with enum types * updated migrations: added enum tables
29 lines
705 B
Go
29 lines
705 B
Go
package queries
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/knadh/goyesql/v2"
|
|
)
|
|
|
|
type Queries struct {
|
|
// Keystore
|
|
WriteKeyPair string `query:"write-key-pair"`
|
|
LoadKeyPair string `query:"load-key-pair"`
|
|
// Store
|
|
CreateOTX string `query:"create-otx"`
|
|
CreateDispatchStatus string `query:"create-dispatch-status"`
|
|
UpdateChainStatus string `query:"update-chain-status"`
|
|
GetTxStatusByTrackingId string `query:"get-tx-status-by-tracking-id"`
|
|
}
|
|
|
|
func LoadQueries(q goyesql.Queries) (*Queries, error) {
|
|
loadedQueries := &Queries{}
|
|
|
|
if err := goyesql.ScanToStruct(loadedQueries, q, nil); err != nil {
|
|
return nil, fmt.Errorf("failed to scan queries %v", err)
|
|
}
|
|
|
|
return loadedQueries, nil
|
|
}
|