|
|
|
|
|
by ramses0
434 days ago
|
|
This is kindof how golang works by default. `import foo/bar/baz` then "foo" and "bar" effectively don't exist, you only refer to "baz" in the end. `import github.com/blah/baz`, `megacorp.com/finance/baz`, ... It all resolves to `baz.Something()` |
|