shad-go/allocs/allocs.go

10 lines
138 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
2020-08-26 19:34:08 +00:00
package allocs
// implement your Counter below
func NewEnhancedCounter() Counter {
return NewBaselineCounter()
2022-02-10 22:06:57 +00:00
}