From 2409c2cf1af39c9d655e73bfc847b9bed50cb52e Mon Sep 17 00:00:00 2001 From: mos Date: Sun, 31 Mar 2024 16:21:24 +0200 Subject: [PATCH] redirect imports to new git url --- cmd/hypo/main.go | 2 +- cmd/hypoc/main.go | 2 +- cpu/cpu.go | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/hypo/main.go b/cmd/hypo/main.go index b1b1350..c0dfc23 100644 --- a/cmd/hypo/main.go +++ b/cmd/hypo/main.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/rtcall/hypo/cpu" + "git.cyclic.zone/mos/hypo/cpu" ) func main() { diff --git a/cmd/hypoc/main.go b/cmd/hypoc/main.go index ed8d687..4ead5b5 100644 --- a/cmd/hypoc/main.go +++ b/cmd/hypoc/main.go @@ -5,7 +5,7 @@ import ( "fmt" "os" - "github.com/rtcall/hypo/asm" + "git.cyclic.zone/mos/hypo/asm" ) func main() { diff --git a/cpu/cpu.go b/cpu/cpu.go index d65afcd..f0c2c5d 100644 --- a/cpu/cpu.go +++ b/cpu/cpu.go @@ -7,7 +7,7 @@ import ( "fmt" "io" - "github.com/rtcall/hypo/asm" + "git.cyclic.zone/mos/hypo/asm" ) type Cpu struct { diff --git a/go.mod b/go.mod index 8d9c624..c0aa3c7 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/rtcall/hypo +module git.cyclic.zone/mos/hypo go 1.19