(ctx context.Context, arg AddGraphEncryptKeyParams)
| 27 | } |
| 28 | |
| 29 | func (q *Queries) AddGraphEncryptKey(ctx context.Context, arg AddGraphEncryptKeyParams) error { |
| 30 | _, err := q.db.ExecContext(ctx, addGraphEncryptKey, |
| 31 | arg.ID, |
| 32 | arg.GraphID, |
| 33 | arg.EncryptedPrivateKey, |
| 34 | arg.PublicKey, |
| 35 | ) |
| 36 | return err |
| 37 | } |
| 38 | |
| 39 | const addGraphSalt = `-- name: AddGraphSalt :exec |
| 40 | INSERT INTO graph_salts ( |
nothing calls this directly
no test coverage detected