Added skel for our Writer class:

It connect and identifies just fine, but no API for publishing right now.

Signed-off-by: Pedro Melo <melo@simplicidade.org>
This commit is contained in:
Pedro Melo
2014-07-20 19:52:48 +01:00
parent 3e54c101f4
commit d3fe82af45

View File

@@ -0,0 +1,14 @@
package AnyEvent::NSQ::Writer;
# ABSTRACT: a NSQ.io asynchronous producer
# VERSION
# AUTHORITY
use strict;
use warnings;
use Carp 'croak';
use parent 'AnyEvent::NSQ::Client';
1;