Did I do something wrong on importing a package under src? My folder structure is like it:
- project
- src
helper.go( package utils)
main.go(package main)
And I want to use utils in the main.go I write this:
import ("utils")
but give me the error,said can't import utils. I don't understand which is wrong. there is no other package under src. Thank you for the help.