(s *schema.Schema, resourceID interface{})
| 727 | } |
| 728 | |
| 729 | func (tx *Transaction) Delete(s *schema.Schema, resourceID interface{}) error { |
| 730 | return tx.DeleteContext(context.Background(), s, resourceID) |
| 731 | } |
| 732 | |
| 733 | //Delete delete resource from db |
| 734 | func (tx *Transaction) DeleteContext(ctx context.Context, s *schema.Schema, resourceID interface{}) error { |
nothing calls this directly
no test coverage detected