11 lines
197 B
Go
11 lines
197 B
Go
package lightCore
|
|
|
|
type Routers struct {
|
|
groupPath string
|
|
cs *ClassMounts
|
|
}
|
|
|
|
func NewRouters(groupPath string, cs *ClassMounts) *Routers {
|
|
return &Routers{groupPath: groupPath, cs: cs}
|
|
}
|