Move imports to allow out-of-gopath build

This commit is contained in:
Thomas Schwery 2017-02-06 13:42:50 +01:00
parent 34190fe98b
commit 830ff2673d
2 changed files with 30 additions and 29 deletions

View file

@ -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
View file

@ -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"