| 23 | } |
| 24 | |
| 25 | type ActionPerformerInterface interface { |
| 26 | DoAction(request Outcome, inFields map[string]interface{}, transaction *sqlx.Tx) (api2go.Responder, []ActionResponse, []error) |
| 27 | Name() string |
| 28 | } |
| 29 | |
| 30 | // Outcome is call to a internal function with attributes as parameters |
| 31 | // Outcome has a particular `type`, it can be one of the data entities already defined |
no outgoing calls
no test coverage detected