rafaelmaeuer
3/4/2020 - 8:52 PM

How to import and use different packages of the same name in Go language?

import (
    "text/template"
    htemplate "html/template" // this is now imported as htemplate
)