I have a repository with a Go project in Github, I need to import in a module a specific branch, to make relevant modifications. It looks like this:
import (
"github.com/repository/utils/date_utils"
"github.com/repository/utils/utils/error_utils"
"github.com/repository/utils/utils/hour_utils"
"strconv"
"strings"
)
The import is always done directly from the master. I just need this module to import from a different branch.