Fix storing counter by value

This commit is contained in:
Gregory Eremin 2014-07-17 00:45:48 +07:00
parent 4a597c15bd
commit 7e7fea7010

View File

@ -4,6 +4,7 @@ type (
Queue struct {
Name string
Counter Counter
Counter *Counter
}
)