12 lines
147 B
Go
12 lines
147 B
Go
|
package stats
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type Void struct{}
|
||
|
|
||
|
func (v *Void) Add(name string, dur time.Duration) {}
|
||
|
|
||
|
func (v *Void) Error(name string) {}
|