Flatten stuff

This commit is contained in:
Michael Crosby 2015-11-06 15:42:32 -08:00
parent 86ec7e8fd2
commit 412d2b0239
5 changed files with 8 additions and 23 deletions

View file

@ -18,12 +18,12 @@ func (e *ExitEvent) String() string {
return "exit event"
}
type CreateContainerEvent struct {
type StartContainerEvent struct {
ID string
BundlePath string
Err chan error
}
func (c *CreateContainerEvent) String() string {
func (c *StartContainerEvent) String() string {
return "create container"
}