shad-go/lrucache/lru.go

8 lines
90 B
Go
Raw Normal View History

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