cobra/goweb_command.go

12 lines
244 B
Go
Raw Permalink Normal View History

2024-09-30 11:59:53 +00:00
package cobra
import "git.vinchent.xyz/vinchent/go-web/framework"
func (c *Command) SetContainer(container framework.Container) {
c.container = container
}
func (c *Command) GetContainer() framework.Container {
return c.Root().container
}