Move debug.go to a `debug` sub-package

Signed-off-by: Solomon Hykes <solomon@docker.com>
This commit is contained in:
Solomon Hykes 2014-06-18 20:28:07 -07:00
parent 49fe0eb7ac
commit eedfdd348e
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ package backends
import (
"github.com/docker/libswarm/beam"
"github.com/docker/libswarm/utils"
"github.com/docker/libswarm/debug"
)
// New returns a new engine, with all backends
@ -14,7 +14,7 @@ import (
func New() *beam.Object {
backends := beam.NewTree()
backends.Bind("simulator", Simulator())
backends.Bind("debug", utils.Debug())
backends.Bind("debug", debug.Debug())
backends.Bind("fakeclient", FakeClient())
backends.Bind("dockerclient", DockerClient())
backends.Bind("exec", Exec())

View File

@ -1,4 +1,4 @@
package utils
package debug
import (
"fmt"