1
0
Fork 0

Fix storing counter by value

This commit is contained in:
Gregory Eremin 2014-07-17 00:45:48 +07:00
parent 4a597c15bd
commit 7e7fea7010
1 changed files with 1 additions and 0 deletions

View File

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