What\'s C++\'s using some_namespace::object equivalent in golang?
using some_namespace::object
According to the question here I can get using namespace common with sta
using namespace common
There is currently no such functionality in Go.
That's not to say it will never be added: there is open proposal to add "Alias declarations" to the language.