1
0
Fork 0

Add void stats adapter

This commit is contained in:
Gregory Eremin 2016-01-10 14:53:01 +03:00
parent 1c1140f4f3
commit 6452635485
1 changed files with 11 additions and 0 deletions

11
stats/void.go Normal file
View File

@ -0,0 +1,11 @@
package stats
import (
"time"
)
type Void struct{}
func (v *Void) Add(name string, dur time.Duration) {}
func (v *Void) Error(name string) {}