Running two web server at the same time in one go programm
问题 In a go program, I want to run two web servers at the same time, obviously they will be serving on two different ports (and ip addresses if necessary), the problem is with the call to http.handle , when I try to register handler for '/' for the second server, it panics and says there is already a handler associated with '/', I guess I need to create a mux in addition to the DefaultServeMux and I tried to do it using the gorillaMux but couldn't figure it out, Is there something fundamentally