Golang FAQ
What does an underscore in front of an import statement mean? Blank assignments identify code as a work in progress. Or to import a package solely for its side-effects(initialization), use the blank identifier as explicit package name. What is … in Go? A parameter type prefixed with three dots(…) is called a variadic parameter. That means you can pass any number or arguments into that parameter. The function will receive the list of arguments for the parameter as a slice of the type declared for the parameter. »