Consider the following file structure:
GOPATH
src
foo
bar // package main
main.go
app.yaml
baz // package baz
baz.go
aedeploy won't include package "foo/baz" imported by main.go because it doesn't contain a .
in the path name.
|
for _, v := range pkg.Imports { |
|
if !strings.Contains(v, ".") { |
|
continue |
|
} |