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" strfmt "github.com/go-openapi/strfmt"
"client/alliance" "./alliance"
"client/assets" "./assets"
"client/bookmarks" "./bookmarks"
"client/calendar" "./calendar"
"client/character" "./character"
"client/clones" "./clones"
"client/contacts" "./contacts"
"client/corporation" "./corporation"
"client/fleets" "./fleets"
"client/incursions" "./incursions"
"client/industry" "./industry"
"client/insurance" "./insurance"
"client/killmails" "./killmails"
"client/location" "./location"
"client/mail" "./mail"
"client/market" "./market"
"client/planetary_interaction" "./planetary_interaction"
"client/search" "./search"
"client/skills" "./skills"
"client/sovereignty" "./sovereignty"
"client/universe" "./universe"
"client/user_interface" "./user_interface"
"client/wallet" "./wallet"
"client/wars" "./wars"
) )
// Default app HTTP client. // Default app HTTP client.

11
main.go
View file

@ -20,11 +20,12 @@ import (
"github.com/leekchan/accounting" "github.com/leekchan/accounting"
"github.com/logrusorgru/aurora" "github.com/logrusorgru/aurora"
ESI "client" ESI "./client"
ESIPlanetaryInteraction "client/planetary_interaction"
ESISkills "client/skills" ESIPlanetaryInteraction "./client/planetary_interaction"
ESIUniverse "client/universe" ESISkills "./client/skills"
ESIWallet "client/wallet" ESIUniverse "./client/universe"
ESIWallet "./client/wallet"
"database/sql" "database/sql"