(resource *schema.Resource)
| 119 | } |
| 120 | |
| 121 | func (tl *transactionEventLogger) Create(resource *schema.Resource) error { |
| 122 | return tl.CreateContext(context.Background(), resource) |
| 123 | } |
| 124 | |
| 125 | func (tl *transactionEventLogger) CreateContext(ctx context.Context, resource *schema.Resource) error { |
| 126 | err := tl.Transaction.CreateContext(ctx, resource) |
nothing calls this directly
no test coverage detected