github.com/volts-dev/volts@v0.0.0-20240120094013-5e9c65924106/demo/web/volts_module/group/base/base.go (about)

     1  package base
     2  
     3  import (
     4  	"github.com/volts-dev/volts/router"
     5  )
     6  
     7  var Base *router.TGroup
     8  
     9  func init() {
    10  	Base = router.NewGroup(router.WithGroupPathPrefix("/base"))
    11  	Base.Url("GET", "/", ctrl.index)
    12  }