Actor handles all business logic for cf networking operations.
| 6 | |
| 7 | // Actor handles all business logic for cf networking operations. |
| 8 | type Actor struct { |
| 9 | NetworkingClient NetworkingClient |
| 10 | CloudControllerClient CloudControllerClient |
| 11 | } |
| 12 | |
| 13 | // NewActor returns a new actor. |
| 14 | func NewActor(networkingClient NetworkingClient, ccClient CloudControllerClient) *Actor { |
nothing calls this directly
no outgoing calls
no test coverage detected