github.com/dfklegend/cell2/utils@v0.0.0-20240402033734-a0a9f3d9335d/bridge/test/info/impls/info.go (about) 1 package impls 2 3 type info struct { 4 } 5 6 func newInfo() *info { 7 return &info{} 8 } 9 10 func (c *info) GetInfo() string { 11 return "hello from classa" 12 }