shad-go/lrucache/lru.go

8 lines
91 B
Go
Raw Normal View History

2022-02-10 22:06:57 +00:00
//go:build !solution
package lrucache
func New(cap int) Cache {
panic("implement me")
}