-
e.g. insteado f
It would be nice to be able to just specify
|
Beta Was this translation helpful? Give feedback.
Answered by
gzuidhof
Mar 10, 2025
Replies: 1 comment
-
The short answer is no. We lean on the Go compiler to work out the packages, that works with the full paths. If you had a folder called |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gzuidhof
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The short answer is no.
We lean on the Go compiler to work out the packages, that works with the full paths.
If you had a folder called
time
, and would specify"time"
, it wouldn't be able to tell the difference between your folder and thetime
package in the library. Of course we could build something for that, but I think it's better to keep it simple and use the full package identifiers - I hope that makes sense