github.com/songzhibin97/gkit@v1.2.13/container/group/grouper.go (about)

     1  package group
     2  
     3  // LazyLoadGroup 懒加载结构化
     4  type LazyLoadGroup interface {
     5  	Get(key string) interface{}
     6  	ReSet(nf func() interface{})
     7  	Clear()
     8  }