shad-go/lrucache/lru.go
2022-03-15 23:49:56 +03:00

7 lines
91 B
Go

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