| 20 | ` |
| 21 | |
| 22 | type AddGraphEncryptKeyParams struct { |
| 23 | ID string |
| 24 | GraphID string |
| 25 | EncryptedPrivateKey string |
| 26 | PublicKey string |
| 27 | } |
| 28 | |
| 29 | func (q *Queries) AddGraphEncryptKey(ctx context.Context, arg AddGraphEncryptKeyParams) error { |
| 30 | _, err := q.db.ExecContext(ctx, addGraphEncryptKey, |
nothing calls this directly
no outgoing calls
no test coverage detected