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

8 lines
111 B
Go

//go:build !solution
// +build !solution
package lrucache
func New(cap int) Cache {
panic("implement me")
}