| 385 | } |
| 386 | |
| 387 | type fakeFunctionStore struct { |
| 388 | fns []*cqrs.Function |
| 389 | fnByID map[uuid.UUID]*cqrs.Function |
| 390 | app *cqrs.App |
| 391 | err error |
| 392 | functionOpts *cqrs.GetFunctionsByAppOpts |
| 393 | } |
| 394 | |
| 395 | func (f *fakeFunctionStore) GetFunctions(ctx context.Context) ([]*cqrs.Function, error) { |
| 396 | return f.fns, f.err |
nothing calls this directly
no outgoing calls
no test coverage detected