diff options
Diffstat (limited to 'pkg/server/module/hex.go')
| -rw-r--r-- | pkg/server/module/hex.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/server/module/hex.go b/pkg/server/module/hex.go index 2ffd1fc..9b80e0d 100644 --- a/pkg/server/module/hex.go +++ b/pkg/server/module/hex.go @@ -22,6 +22,6 @@ func hexDecoder(rq, wq queue.Q) error { } func init() { - register("hex", pipe(hexEncoder)) - register("unhex", pipe(hexDecoder)) + registerPipe("hex", Pipe(hexEncoder)) + registerPipe("unhex", Pipe(hexDecoder)) } |
