package server import ( "io" ) func init() { setHandler("exit", exit) } func exit(s *Server, args []string, out io.Writer) { s.Stop() }