Пример #1
0
func NewUnixServer(engine *Momonga, config *configuration.Config, inherit bool) *UnixServer {
	t := &UnixServer{
		Engine:  engine,
		Address: config.GetSocketAddress(),
		stop:    make(chan bool, 1),
		inherit: inherit,
	}

	return t
}