As I know, I can run simple web server with Golang just use http
package, like
http.ListenAndServe(PORT, nil)
where PORT is TCP address to listen.
Can I use PORT as PORTS, for example http.ListenAndServe(":80, :8080", nil)
from one application?
Possible my question is stupid, but "Who don't ask, He will not get answer!"
Thanks for advance!