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