diff --git a/config.go b/config.go index 9b3b6f0..c462695 100755 --- a/config.go +++ b/config.go @@ -4,9 +4,9 @@ import ( "encoding/json" "fmt" "io/ioutil" - "local/args" - "local/oauth2" - "local/storage" + "gogs.inhome.blapointe.com/local/args" + "gogs.inhome.blapointe.com/local/oauth2" + "gogs.inhome.blapointe.com/local/storage" "log" "net/http" "strings" diff --git a/go.mod b/go.mod index 9f5af7d..ab61d25 100644 --- a/go.mod +++ b/go.mod @@ -1,14 +1,14 @@ -module local/email-xactions-to-todo +module gogs.inhome.blapointe.com/local/email-xactions-to-todo go 1.17 require ( github.com/google/uuid v1.3.0 gopkg.in/yaml.v2 v2.4.0 - local/args v0.0.0-00010101000000-000000000000 - local/oauth2 v0.0.0-00010101000000-000000000000 - local/sandbox/contact/contact v0.0.0-00010101000000-000000000000 - local/storage v0.0.0-00010101000000-000000000000 + gogs.inhome.blapointe.com/local/args latest + gogs.inhome.blapointe.com/local/oauth2 latest + gogs.inhome.blapointe.com/local-sandbox/contact latest + gogs.inhome.blapointe.com/local/storage latest ) require ( @@ -56,17 +56,6 @@ require ( google.golang.org/api v0.0.0-20181120235003-faade3cbb06a // indirect google.golang.org/appengine v1.3.0 // indirect gopkg.in/ini.v1 v1.42.0 // indirect - local/logb v0.0.0-00010101000000-000000000000 // indirect + gogs.inhome.blapointe.com/local/logb v0.0.0-00010101000000-000000000000 // indirect ) -replace local/args => ../args - -replace local/oauth2 => ../oauth2 - -replace local/sandbox/contact/contact => ../sandbox/contact/contact - -replace local/storage => ../storage - -replace local/router => ../router - -replace local/logb => ../logb diff --git a/main.go b/main.go index 49a875c..0ee9762 100755 --- a/main.go +++ b/main.go @@ -1,9 +1,10 @@ package main import ( - "local/sandbox/contact/contact" "log" "regexp" + + "gogs.inhome.blapointe.com/local-sandbox/contact/contact" ) func main() { diff --git a/upload.go b/upload.go index 46343e7..333d64c 100755 --- a/upload.go +++ b/upload.go @@ -5,7 +5,7 @@ import ( "errors" "fmt" "io/ioutil" - "local/oauth2" + "gogs.inhome.blapointe.com/local/oauth2" "net/http" "net/url" "os" diff --git a/upload_test.go b/upload_test.go index a29d5be..ec826ac 100644 --- a/upload_test.go +++ b/upload_test.go @@ -3,7 +3,7 @@ package main import ( "bytes" "io/ioutil" - "local/storage" + "gogs.inhome.blapointe.com/local/storage" "os" "path" "testing"