Move imports to allow out-of-gopath build
This commit is contained in:
parent
34190fe98b
commit
830ff2673d
2 changed files with 30 additions and 29 deletions
|
@ -9,30 +9,30 @@ import (
|
|||
|
||||
strfmt "github.com/go-openapi/strfmt"
|
||||
|
||||
"client/alliance"
|
||||
"client/assets"
|
||||
"client/bookmarks"
|
||||
"client/calendar"
|
||||
"client/character"
|
||||
"client/clones"
|
||||
"client/contacts"
|
||||
"client/corporation"
|
||||
"client/fleets"
|
||||
"client/incursions"
|
||||
"client/industry"
|
||||
"client/insurance"
|
||||
"client/killmails"
|
||||
"client/location"
|
||||
"client/mail"
|
||||
"client/market"
|
||||
"client/planetary_interaction"
|
||||
"client/search"
|
||||
"client/skills"
|
||||
"client/sovereignty"
|
||||
"client/universe"
|
||||
"client/user_interface"
|
||||
"client/wallet"
|
||||
"client/wars"
|
||||
"./alliance"
|
||||
"./assets"
|
||||
"./bookmarks"
|
||||
"./calendar"
|
||||
"./character"
|
||||
"./clones"
|
||||
"./contacts"
|
||||
"./corporation"
|
||||
"./fleets"
|
||||
"./incursions"
|
||||
"./industry"
|
||||
"./insurance"
|
||||
"./killmails"
|
||||
"./location"
|
||||
"./mail"
|
||||
"./market"
|
||||
"./planetary_interaction"
|
||||
"./search"
|
||||
"./skills"
|
||||
"./sovereignty"
|
||||
"./universe"
|
||||
"./user_interface"
|
||||
"./wallet"
|
||||
"./wars"
|
||||
)
|
||||
|
||||
// Default app HTTP client.
|
||||
|
|
11
main.go
11
main.go
|
@ -20,11 +20,12 @@ import (
|
|||
"github.com/leekchan/accounting"
|
||||
"github.com/logrusorgru/aurora"
|
||||
|
||||
ESI "client"
|
||||
ESIPlanetaryInteraction "client/planetary_interaction"
|
||||
ESISkills "client/skills"
|
||||
ESIUniverse "client/universe"
|
||||
ESIWallet "client/wallet"
|
||||
ESI "./client"
|
||||
|
||||
ESIPlanetaryInteraction "./client/planetary_interaction"
|
||||
ESISkills "./client/skills"
|
||||
ESIUniverse "./client/universe"
|
||||
ESIWallet "./client/wallet"
|
||||
|
||||
"database/sql"
|
||||
|
||||
|
|
Reference in a new issue