From 3fe7bdb7621dbbd84fe686084c74dbc18de1a96a Mon Sep 17 00:00:00 2001 From: josebarn Date: Tue, 15 Aug 2017 23:11:16 -0300 Subject: [PATCH] build wants full github path for build, lets give it a try --- api/app.go | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/app.go b/api/app.go index d6d048e..dfe5c7e 100644 --- a/api/app.go +++ b/api/app.go @@ -2,7 +2,7 @@ package api import ( "context" - . "drone-with-go/model" + . "github.com/josebarn/drone-with-go/model" "github.com/go-chi/chi" "github.com/go-chi/render" "net/http" diff --git a/main.go b/main.go index 0393832..f7cc673 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - . "drone-with-go/api" + . "github.com/josebarn/drone-with-go/api" "github.com/urfave/cli" "log" "os"