9 lines
136 B
Go
9 lines
136 B
Go
|
// +build !solution
|
||
|
|
||
|
package allocs
|
||
|
|
||
|
// implement your Counter below
|
||
|
|
||
|
func NewEnhancedCounter() Counter {
|
||
|
return NewBaselineCounter()
|
||
|
}
|