goland有没有办法为本地包启用自动导入?或者我必须自己手动导入它们吗?
package main
import (
"fmt"
"./show"
)
func main() {
test1.Test1()
fmt.Println("MAIN")
show.Show1()
}package main
import (
"fmt"
"./show"
)
func main() {
test1.Test1()
fmt.Println("MAIN")
show.Show1()
}2019-07-05
举报