move cruncher out of core and into its own package

This commit is contained in:
travisturner 2013-12-12 08:50:25 -06:00
parent ccdcac5ebb
commit 7ec666d912
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
package core
package cruncher
import (
"github.com/davecgh/go-spew/spew"
@ -7,7 +7,7 @@ import (
type Cruncher struct {
close_chan chan bool
close_chan chan bool
}
func (cruncher *Cruncher) Run(port int) {

View file

@ -1,4 +1,4 @@
package core
package cruncher
import (
"testing"