# README
worker
Walk[User, error](list, func(user User) error {
logrus.Info(user)
return nil
})
map
m := Define[User]()
m.Store("user1", User{"tom", 18})
data, err := m.Load("user1")
if err != nil {
logrus.Error(err)
return
}
logrus.Info(data)
# Packages
No description provided by the author
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Type aliases
No description provided by the author