Skip to content

Commit

Permalink
Decouple dependencies outside of the package
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Lobdell committed May 16, 2018
1 parent e016971 commit ff9a8b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gzapread.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"os/signal"

"gzap/controllers"
"github.com/slobdell/gzap/controllers"
)

var sigChan = make(chan os.Signal)
Expand Down
4 changes: 2 additions & 2 deletions public.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package gzap

import (
b "gzap/boundaries"
"gzap/pool"
b "github.com/slobdell/gzap/boundaries"
"github.com/slobdell/gzap/pool"
)

// WithLogger takes an input topic and an input function with a boundaries.Logger object;
Expand Down

0 comments on commit ff9a8b5

Please sign in to comment.