以下のディレクトリ構成でinqueryHandlers.go内で import "project_name/model"としてinquery.goないのStructをinqueryhandlers.goないで使用しました。ところがundefinedでエラーが出てさらにインポート箇所でnot usedとでてしまいます。
import "../model"ではこのエラーが出ないのですが、今度は../model" in non-local packageというエラーが出てビルドに失敗してしまいます。

この場合どのようにインポートすればいいのでしょうか

ディレクトリ構成

├── handlers
│   ├── inqueryHandlers.go
│   └── proxyHandlers.go
├── loger.go
├── main.go
├── model
│   └── inquery.go
├── router.go
└── routes.go

inquery.go

// Inquery is a model.
type Inquery struct {
    Id      int       `json: "id"`
    Content string    `json: "content"`
    Created time.Time `json: "created"`
}

// Inqueries are models.
type Inqueries []Inquery