shad-go/lrucache/lru.go
2020-03-12 12:32:51 +03:00

7 lines
90 B
Go

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