Fixed #66 Support memory interface.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu
2016-05-02 11:04:19 +08:00
parent 36dc3335f8
commit 077f836d1c
3 changed files with 115 additions and 0 deletions

15
gorush/storage.go Normal file
View File

@@ -0,0 +1,15 @@
package gorush
// Storage interface
type Storage interface {
addTotalCount(int64)
addIosSuccess(int64)
addIosError(int64)
addAndroidSuccess(int64)
addAndroidError(int64)
getTotalCount() int64
getIosSuccess() int64
getIosError() int64
getAndroidSuccess() int64
getAndroidError() int64
}