(handle string, connection connection.Connection)
| 15 | } |
| 16 | |
| 17 | func newContainer(handle string, connection connection.Connection) garden.Container { |
| 18 | return &container{ |
| 19 | handle: handle, |
| 20 | |
| 21 | connection: connection, |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | func (container *container) Handle() string { |
| 26 | return container.handle |
no outgoing calls
no test coverage detected