Files
2021-12-16 15:35:44 +08:00

20 lines
312 B
Go

package controller
import (
"SciencesServer/app/service"
)
type Config struct{ *service.Session }
type ConfigHandle func(session *service.Session) *Config
func (c *Config) Basic() {
}
func NewConfig() ConfigHandle {
return func(session *service.Session) *Config {
return &Config{Session: session}
}
}