对子目录使用滑行

I have the following structure for my project

MyCode

== main.go

== user

==== user.go

I would like to build my code with 'go build' so in main.go I have a

import "user"

so that I can access the code in the package in that directory. In order to build this properly I would need my user directory inside my vendor directory. However, when I do a 'glide install' the user directory is deleted. I do not want to move my user directory into my vendor directory manually everytime.

The goal is to git clone my project, do a glide install then a go build and have it work. Is there a way I can have glide move my user directory into the vendor directory without having to do it manually?