Update git remote URL from git.ourworld.tf to git.threefold.info
This commit is contained in:
		| @@ -5,8 +5,8 @@ import ( | ||||
| 	"reflect" | ||||
| 	"strings" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/paramsparser" | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/playbook" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/paramsparser" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/playbook" | ||||
| ) | ||||
|  | ||||
| // Handler interface defines methods that all handlers must implement | ||||
|   | ||||
| @@ -5,7 +5,7 @@ import ( | ||||
| 	"reflect" | ||||
| 	"strings" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/playbook" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/playbook" | ||||
| ) | ||||
|  | ||||
| // HandlerFactory manages a collection of handlers | ||||
|   | ||||
| @@ -12,7 +12,7 @@ import ( | ||||
| 	"sync" | ||||
| 	"syscall" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/playbook" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/playbook" | ||||
| ) | ||||
|  | ||||
| // ANSI color codes for terminal output | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package handlers | ||||
| import ( | ||||
| 	"fmt" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| ) | ||||
|  | ||||
| // AuthHandler handles authentication actions | ||||
|   | ||||
| @@ -5,9 +5,9 @@ import ( | ||||
| 	"reflect" | ||||
| 	"strings" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/paramsparser" | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/playbook" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/paramsparser" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/playbook" | ||||
| ) | ||||
|  | ||||
| // BaseHandler provides common functionality for all handlers | ||||
|   | ||||
| @@ -4,8 +4,8 @@ import ( | ||||
| 	"fmt" | ||||
| 	"strings" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/playbook" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/playbook" | ||||
| ) | ||||
|  | ||||
| // HandlerFactory manages a collection of handlers for processing HeroScript commands | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| package herohandler | ||||
|  | ||||
| import ( | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| ) | ||||
|  | ||||
| // GetFactory returns the handler factory | ||||
|   | ||||
| @@ -4,7 +4,7 @@ import ( | ||||
| 	"log" | ||||
| 	"sync" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/handlerfactory/herohandler" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/handlerfactory/herohandler" | ||||
| ) | ||||
|  | ||||
| func main() { | ||||
|   | ||||
| @@ -4,10 +4,10 @@ import ( | ||||
| 	"fmt" | ||||
| 	"log" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
|  | ||||
| 	// "git.ourworld.tf/herocode/heroagent/pkg/handlerfactory/heroscript/handlerfactory/fakehandler" | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/handlerfactory/processmanagerhandler" | ||||
| 	// "git.threefold.info/herocode/heroagent/pkg/handlerfactory/heroscript/handlerfactory/fakehandler" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/handlerfactory/processmanagerhandler" | ||||
| ) | ||||
|  | ||||
| // HeroHandler is the main handler factory that manages all registered handlers | ||||
|   | ||||
| @@ -3,7 +3,7 @@ package main | ||||
| import ( | ||||
| 	"fmt" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/playbook" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/playbook" | ||||
| ) | ||||
|  | ||||
| func main() { | ||||
|   | ||||
| @@ -3,8 +3,8 @@ package processmanagerhandler | ||||
| import ( | ||||
| 	"fmt" | ||||
|  | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| 	"git.ourworld.tf/herocode/heroagent/pkg/processmanager" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/heroscript/handlerfactory/core" | ||||
| 	"git.threefold.info/herocode/heroagent/pkg/processmanager" | ||||
| ) | ||||
|  | ||||
| // ProcessManagerHandler handles process manager-related actions | ||||
|   | ||||
		Reference in New Issue
	
	Block a user