mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-22 22:26:46 +01:00
28 lines
566 B
Go
28 lines
566 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"`
|
||
|
// OTX
|
||
|
CreateOTX string `query:"create-otx"`
|
||
|
// Dispatch
|
||
|
CreateDispatchStatus string `query:"create-dispatch-status"`
|
||
|
}
|
||
|
|
||
|
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
|
||
|
}
|