10 lines
158 B
Go
10 lines
158 B
Go
//go:build !solution
|
|
// +build !solution
|
|
|
|
package allocs
|
|
|
|
// implement your Counter below
|
|
|
|
func NewEnhancedCounter() Counter {
|
|
return NewBaselineCounter()
|
|
}
|