lru: init

This commit is contained in:
2024-01-27 17:50:56 +03:00
parent 29fea2773f
commit 299d11d510
5 changed files with 253 additions and 0 deletions

11
lru/go.mod Normal file
View File

@ -0,0 +1,11 @@
module lru
go 1.21.6
require github.com/stretchr/testify v1.8.4
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)