shad-go/allocs/allocs.go
2022-02-10 22:06:57 +00:00

10 lines
158 B
Go

//go:build !solution
// +build !solution
package allocs
// implement your Counter below
func NewEnhancedCounter() Counter {
return NewBaselineCounter()
}