Gary Leeson vor 4 Monaten
Ursprung
Commit
542e8ca855
2 geänderte Dateien mit 7 neuen und 7 gelöschten Zeilen
  1. 4 4
      README.md
  2. 3 3
      makefile

+ 4 - 4
README.md

@@ -13,10 +13,10 @@ import (
 	"io"
 	"io/ioutil"
 
-	"github.com/riomhaire/jrpcserver/infrastructure/api/rpc"
-	"github.com/riomhaire/jrpcserver/model"
-	"github.com/riomhaire/jrpcserver/model/jrpcerror"
-	"github.com/riomhaire/jrpcserver/usecases/defaultcommand"
+	"git.riomhaire.com/gremlin/jrpcserver/infrastructure/api/rpc"
+	"git.riomhaire.com/gremlin/jrpcserver/model"
+	"git.riomhaire.com/gremlin/jrpcserver/model/jrpcerror"
+	"git.riomhaire.com/gremlin/jrpcserver/usecases/defaultcommand"
 )
 
 // A simple example 'helloworld' program to show how use the framework

+ 3 - 3
makefile

@@ -6,9 +6,9 @@ dependencies:
 
 build: dependencies
 	@echo Compiling Apps
-	@echo   --- github.com/riomhaire/jrpcserver 
-	@go build github.com/riomhaire/jrpcserver/infrastructure/application/riomhaire/jrpcserver
-	@go install github.com/riomhaire/jrpcserver/infrastructure/application/riomhaire/jrpcserver
+	@echo   --- git.riomhaire.com/gremlin/jrpcserver 
+	@go build git.riomhaire.com/gremlin/jrpcserver/infrastructure/application/riomhaire/jrpcserver
+	@go install git.riomhaire.com/gremlin/jrpcserver/infrastructure/application/riomhaire/jrpcserver
 	@echo Done Compiling Apps
 
 test: