# README
group
group libraries.
Example of use
import "github.com/go-dev-frame/sponge/pkg/container/group"
type foo struct {
bar string
}
gr := group.NewGroup(func () interface{} {
return &foo{"hello"}
})
fmt.Println(gr.Get(*foo).bar)
# Functions
NewGroup news a group container.