diff --git a/README.md b/README.md index 58199d5e..3ee3de8b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -[![Go](https://github.com/mengdaming/tcr/actions/workflows/go.yml/badge.svg)](https://github.com/mengdaming/tcr/actions/workflows/go.yml) -[![Go Lint](https://github.com/mengdaming/tcr/actions/workflows/golangci_lint.yml/badge.svg)](https://github.com/mengdaming/tcr/actions/workflows/golangci_lint.yml) -[![goreleaser](https://github.com/mengdaming/tcr/actions/workflows/goreleaser.yml/badge.svg)](https://github.com/mengdaming/tcr/actions/workflows/goreleaser.yml) -[![Add contributors](https://github.com/mengdaming/tcr/actions/workflows/add_contributors.yml/badge.svg)](https://github.com/mengdaming/tcr/actions/workflows/add_contributors.yml) +[![Go](https://github.com/murex/tcr/actions/workflows/go.yml/badge.svg)](https://github.com/murex/tcr/actions/workflows/go.yml) +[![Go Lint](https://github.com/murex/tcr/actions/workflows/golangci_lint.yml/badge.svg)](https://github.com/murex/tcr/actions/workflows/golangci_lint.yml) +[![goreleaser](https://github.com/murex/tcr/actions/workflows/goreleaser.yml/badge.svg)](https://github.com/murex/tcr/actions/workflows/goreleaser.yml) +[![Add contributors](https://github.com/murex/tcr/actions/workflows/add_contributors.yml/badge.svg)](https://github.com/murex/tcr/actions/workflows/add_contributors.yml) # TCR (Test && Commit || Revert) utility diff --git a/doc/tcr-gui.md b/doc/tcr-gui.md index da9e29c5..127b64e7 100644 --- a/doc/tcr-gui.md +++ b/doc/tcr-gui.md @@ -24,4 +24,4 @@ tcr-gui [flags] -t, --toolchain string Indicate the toolchain to be used by TCR ``` -###### Auto generated by spf13/cobra on 1-Oct-2021 +###### Auto generated by spf13/cobra on 18-Oct-2021 diff --git a/doc/tcr.md b/doc/tcr.md index fe708135..3c5e478f 100644 --- a/doc/tcr.md +++ b/doc/tcr.md @@ -29,4 +29,4 @@ tcr [flags] * [tcr mob](tcr_mob.md) - Run TCR in mob mode * [tcr solo](tcr_solo.md) - Run TCR in solo mode -###### Auto generated by spf13/cobra on 1-Oct-2021 +###### Auto generated by spf13/cobra on 18-Oct-2021 diff --git a/doc/tcr_mob.md b/doc/tcr_mob.md index 3839ea20..9d0adde9 100644 --- a/doc/tcr_mob.md +++ b/doc/tcr_mob.md @@ -32,4 +32,4 @@ tcr mob [flags] * [tcr](tcr.md) - TCR (Test && Commit || Revert) -###### Auto generated by spf13/cobra on 1-Oct-2021 +###### Auto generated by spf13/cobra on 18-Oct-2021 diff --git a/doc/tcr_solo.md b/doc/tcr_solo.md index b20a55a7..703d9b1b 100644 --- a/doc/tcr_solo.md +++ b/doc/tcr_solo.md @@ -32,4 +32,4 @@ tcr solo [flags] * [tcr](tcr.md) - TCR (Test && Commit || Revert) -###### Auto generated by spf13/cobra on 1-Oct-2021 +###### Auto generated by spf13/cobra on 18-Oct-2021 diff --git a/tcr-cli/cli/terminal.go b/tcr-cli/cli/terminal.go index 9ee497c5..2b4f2802 100644 --- a/tcr-cli/cli/terminal.go +++ b/tcr-cli/cli/terminal.go @@ -1,12 +1,12 @@ package cli import ( - "github.com/mengdaming/tcr-engine/engine" - "github.com/mengdaming/tcr-engine/report" - "github.com/mengdaming/tcr-engine/role" - "github.com/mengdaming/tcr-engine/runmode" - "github.com/mengdaming/tcr-engine/stty" - "github.com/mengdaming/tcr-engine/ui" + "github.com/murex/tcr-engine/engine" + "github.com/murex/tcr-engine/report" + "github.com/murex/tcr-engine/role" + "github.com/murex/tcr-engine/runmode" + "github.com/murex/tcr-engine/stty" + "github.com/murex/tcr-engine/ui" "os" "strings" ) diff --git a/tcr-cli/cli/terminal_test.go b/tcr-cli/cli/terminal_test.go index 9659e23d..883a18b4 100644 --- a/tcr-cli/cli/terminal_test.go +++ b/tcr-cli/cli/terminal_test.go @@ -1,7 +1,7 @@ package cli import ( - "github.com/mengdaming/tcr-engine/engine" + "github.com/murex/tcr-engine/engine" "github.com/stretchr/testify/assert" "os" "testing" diff --git a/tcr-cli/cmd/mob.go b/tcr-cli/cmd/mob.go index 62ddef5c..c0fcc7c5 100644 --- a/tcr-cli/cmd/mob.go +++ b/tcr-cli/cmd/mob.go @@ -1,9 +1,9 @@ package cmd import ( - "github.com/mengdaming/tcr-cli/cli" - "github.com/mengdaming/tcr-engine/runmode" - "github.com/mengdaming/tcr-engine/settings" + "github.com/murex/tcr-cli/cli" + "github.com/murex/tcr-engine/runmode" + "github.com/murex/tcr-engine/settings" "github.com/spf13/cobra" ) diff --git a/tcr-cli/cmd/root.go b/tcr-cli/cmd/root.go index 2783b15c..e26bf832 100644 --- a/tcr-cli/cmd/root.go +++ b/tcr-cli/cmd/root.go @@ -2,10 +2,10 @@ package cmd import ( "fmt" - "github.com/mengdaming/tcr-cli/cli" - "github.com/mengdaming/tcr-engine/engine" - "github.com/mengdaming/tcr-engine/runmode" - "github.com/mengdaming/tcr-engine/settings" + "github.com/murex/tcr-cli/cli" + "github.com/murex/tcr-engine/engine" + "github.com/murex/tcr-engine/runmode" + "github.com/murex/tcr-engine/settings" "github.com/mitchellh/go-homedir" "github.com/spf13/cobra" "github.com/spf13/viper" diff --git a/tcr-cli/cmd/solo.go b/tcr-cli/cmd/solo.go index 4a333e8a..da0eba44 100644 --- a/tcr-cli/cmd/solo.go +++ b/tcr-cli/cmd/solo.go @@ -1,9 +1,9 @@ package cmd import ( - "github.com/mengdaming/tcr-cli/cli" - "github.com/mengdaming/tcr-engine/runmode" - "github.com/mengdaming/tcr-engine/settings" + "github.com/murex/tcr-cli/cli" + "github.com/murex/tcr-engine/runmode" + "github.com/murex/tcr-engine/settings" "github.com/spf13/cobra" ) diff --git a/tcr-cli/go.mod b/tcr-cli/go.mod index 1b27f521..0d39762f 100644 --- a/tcr-cli/go.mod +++ b/tcr-cli/go.mod @@ -1,15 +1,15 @@ -module github.com/mengdaming/tcr-cli +module github.com/murex/tcr-cli go 1.17 -replace github.com/mengdaming/tcr-engine => ../tcr-engine +replace github.com/murex/tcr-engine => ../tcr-engine require ( github.com/codeskyblue/go-sh v0.0.0-20200712050446-30169cf553fe github.com/kami-zh/go-capturer v0.0.0-20171211120116-e492ea43421d github.com/logrusorgru/aurora v2.0.3+incompatible - github.com/mengdaming/tcr-engine v0.0.0-00010101000000-000000000000 github.com/mitchellh/go-homedir v1.1.0 + github.com/murex/tcr-engine v0.0.0-00010101000000-000000000000 github.com/spf13/cobra v1.2.1 github.com/spf13/viper v1.8.1 github.com/stretchr/testify v1.7.0 diff --git a/tcr-cli/main.go b/tcr-cli/main.go index e170d017..11a49162 100644 --- a/tcr-cli/main.go +++ b/tcr-cli/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/mengdaming/tcr-cli/cmd" + "github.com/murex/tcr-cli/cmd" ) func main() { diff --git a/tcr-doc/gen_doc.go b/tcr-doc/gen_doc.go index f430ca86..c798362d 100644 --- a/tcr-doc/gen_doc.go +++ b/tcr-doc/gen_doc.go @@ -1,8 +1,8 @@ package main import ( - cli "github.com/mengdaming/tcr-cli/cmd" - gui "github.com/mengdaming/tcr-gui/cmd" + cli "github.com/murex/tcr-cli/cmd" + gui "github.com/murex/tcr-gui/cmd" "github.com/spf13/cobra" "github.com/spf13/cobra/doc" diff --git a/tcr-doc/go.mod b/tcr-doc/go.mod index c5ab02bc..80a39e9a 100644 --- a/tcr-doc/go.mod +++ b/tcr-doc/go.mod @@ -1,10 +1,10 @@ -module github.com/mengdaming/tcr-doc +module github.com/murex/tcr-doc go 1.17 require ( - github.com/mengdaming/tcr-cli v0.0.0-00010101000000-000000000000 - github.com/mengdaming/tcr-gui v0.0.0-00010101000000-000000000000 + github.com/murex/tcr-cli v0.0.0-00010101000000-000000000000 + github.com/murex/tcr-gui v0.0.0-00010101000000-000000000000 github.com/spf13/cobra v1.2.1 ) @@ -35,9 +35,9 @@ require ( github.com/kevinburke/ssh_config v1.1.0 // indirect github.com/logrusorgru/aurora v2.0.3+incompatible // indirect github.com/magiconair/properties v1.8.5 // indirect - github.com/mengdaming/tcr-engine v0.0.0-20210704172954-4213deac264f // indirect github.com/mitchellh/go-homedir v1.1.0 // indirect github.com/mitchellh/mapstructure v1.4.1 // indirect + github.com/murex/tcr-engine v0.0.0-20210704172954-4213deac264f // indirect github.com/pelletier/go-toml v1.9.3 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/russross/blackfriday/v2 v2.0.1 // indirect @@ -66,8 +66,8 @@ require ( gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect ) -replace github.com/mengdaming/tcr-cli => ../tcr-cli +replace github.com/murex/tcr-cli => ../tcr-cli -replace github.com/mengdaming/tcr-gui => ../tcr-gui +replace github.com/murex/tcr-gui => ../tcr-gui -replace github.com/mengdaming/tcr-engine => ../tcr-engine +replace github.com/murex/tcr-engine => ../tcr-engine diff --git a/tcr-engine/engine/params.go b/tcr-engine/engine/params.go index 62a42742..b599b216 100644 --- a/tcr-engine/engine/params.go +++ b/tcr-engine/engine/params.go @@ -1,7 +1,7 @@ package engine import ( - "github.com/mengdaming/tcr-engine/runmode" + "github.com/murex/tcr-engine/runmode" "time" ) diff --git a/tcr-engine/engine/tcr.go b/tcr-engine/engine/tcr.go index 97c5402e..4da69395 100644 --- a/tcr-engine/engine/tcr.go +++ b/tcr-engine/engine/tcr.go @@ -1,16 +1,16 @@ package engine import ( - "github.com/mengdaming/tcr-engine/filesystem" - "github.com/mengdaming/tcr-engine/language" - "github.com/mengdaming/tcr-engine/report" - "github.com/mengdaming/tcr-engine/role" - "github.com/mengdaming/tcr-engine/runmode" - "github.com/mengdaming/tcr-engine/settings" - "github.com/mengdaming/tcr-engine/timer" - "github.com/mengdaming/tcr-engine/toolchain" - "github.com/mengdaming/tcr-engine/ui" - "github.com/mengdaming/tcr-engine/vcs" + "github.com/murex/tcr-engine/filesystem" + "github.com/murex/tcr-engine/language" + "github.com/murex/tcr-engine/report" + "github.com/murex/tcr-engine/role" + "github.com/murex/tcr-engine/runmode" + "github.com/murex/tcr-engine/settings" + "github.com/murex/tcr-engine/timer" + "github.com/murex/tcr-engine/toolchain" + "github.com/murex/tcr-engine/ui" + "github.com/murex/tcr-engine/vcs" "gopkg.in/tomb.v2" "os" "path/filepath" diff --git a/tcr-engine/filesystem/sourcetree_impl.go b/tcr-engine/filesystem/sourcetree_impl.go index d76e2525..c8e0e3da 100644 --- a/tcr-engine/filesystem/sourcetree_impl.go +++ b/tcr-engine/filesystem/sourcetree_impl.go @@ -2,7 +2,7 @@ package filesystem import ( "github.com/fsnotify/fsnotify" - "github.com/mengdaming/tcr-engine/report" + "github.com/murex/tcr-engine/report" "os" "path/filepath" ) diff --git a/tcr-engine/go.mod b/tcr-engine/go.mod index a713da33..b813e0d1 100644 --- a/tcr-engine/go.mod +++ b/tcr-engine/go.mod @@ -1,4 +1,4 @@ -module github.com/mengdaming/tcr-engine +module github.com/murex/tcr-engine go 1.17 diff --git a/tcr-engine/stty/stty.go b/tcr-engine/stty/stty.go index e4961489..05b086f7 100644 --- a/tcr-engine/stty/stty.go +++ b/tcr-engine/stty/stty.go @@ -2,7 +2,7 @@ package stty import ( "bytes" - "github.com/mengdaming/tcr-engine/report" + "github.com/murex/tcr-engine/report" "os" "os/exec" ) diff --git a/tcr-engine/timer/inactivity_teaser.go b/tcr-engine/timer/inactivity_teaser.go index 75e156c4..a6b38cb5 100644 --- a/tcr-engine/timer/inactivity_teaser.go +++ b/tcr-engine/timer/inactivity_teaser.go @@ -1,8 +1,8 @@ package timer import ( - "github.com/mengdaming/tcr-engine/report" - "github.com/mengdaming/tcr-engine/settings" + "github.com/murex/tcr-engine/report" + "github.com/murex/tcr-engine/settings" "sync" "time" ) diff --git a/tcr-engine/timer/mob_turn_countdown.go b/tcr-engine/timer/mob_turn_countdown.go index 3862acd0..91a0f3df 100644 --- a/tcr-engine/timer/mob_turn_countdown.go +++ b/tcr-engine/timer/mob_turn_countdown.go @@ -1,8 +1,8 @@ package timer import ( - "github.com/mengdaming/tcr-engine/report" - "github.com/mengdaming/tcr-engine/runmode" + "github.com/murex/tcr-engine/report" + "github.com/murex/tcr-engine/runmode" "strings" "time" ) diff --git a/tcr-engine/toolchain/cmake.go b/tcr-engine/toolchain/cmake.go index 42535e87..f986ff43 100644 --- a/tcr-engine/toolchain/cmake.go +++ b/tcr-engine/toolchain/cmake.go @@ -1,7 +1,7 @@ package toolchain import ( - "github.com/mengdaming/tcr-engine/language" + "github.com/murex/tcr-engine/language" ) // CmakeToolchain is the toolchain implementation for CMake diff --git a/tcr-engine/toolchain/cmake_test.go b/tcr-engine/toolchain/cmake_test.go index baf1d678..8a126975 100644 --- a/tcr-engine/toolchain/cmake_test.go +++ b/tcr-engine/toolchain/cmake_test.go @@ -1,7 +1,7 @@ package toolchain import ( - "github.com/mengdaming/tcr-engine/language" + "github.com/murex/tcr-engine/language" "github.com/stretchr/testify/assert" "testing" ) diff --git a/tcr-engine/toolchain/gradle.go b/tcr-engine/toolchain/gradle.go index ff4ae4e3..ce5607ba 100644 --- a/tcr-engine/toolchain/gradle.go +++ b/tcr-engine/toolchain/gradle.go @@ -1,7 +1,7 @@ package toolchain import ( - "github.com/mengdaming/tcr-engine/language" + "github.com/murex/tcr-engine/language" ) // GradleToolchain is the toolchain implementation for Maven diff --git a/tcr-engine/toolchain/gradle_test.go b/tcr-engine/toolchain/gradle_test.go index 39ea7162..aba8d454 100644 --- a/tcr-engine/toolchain/gradle_test.go +++ b/tcr-engine/toolchain/gradle_test.go @@ -1,7 +1,7 @@ package toolchain import ( - "github.com/mengdaming/tcr-engine/language" + "github.com/murex/tcr-engine/language" "github.com/stretchr/testify/assert" "testing" ) diff --git a/tcr-engine/toolchain/maven.go b/tcr-engine/toolchain/maven.go index 283cb231..96da9910 100644 --- a/tcr-engine/toolchain/maven.go +++ b/tcr-engine/toolchain/maven.go @@ -1,7 +1,7 @@ package toolchain import ( - "github.com/mengdaming/tcr-engine/language" + "github.com/murex/tcr-engine/language" ) // MavenToolchain is the toolchain implementation for Maven diff --git a/tcr-engine/toolchain/maven_test.go b/tcr-engine/toolchain/maven_test.go index 474803eb..187a0cd7 100644 --- a/tcr-engine/toolchain/maven_test.go +++ b/tcr-engine/toolchain/maven_test.go @@ -1,7 +1,7 @@ package toolchain import ( - "github.com/mengdaming/tcr-engine/language" + "github.com/murex/tcr-engine/language" "github.com/stretchr/testify/assert" "testing" ) diff --git a/tcr-engine/toolchain/toolchain.go b/tcr-engine/toolchain/toolchain.go index d1b20cfc..3d13b85d 100644 --- a/tcr-engine/toolchain/toolchain.go +++ b/tcr-engine/toolchain/toolchain.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" "github.com/codeskyblue/go-sh" - "github.com/mengdaming/tcr-engine/language" - "github.com/mengdaming/tcr-engine/report" + "github.com/murex/tcr-engine/language" + "github.com/murex/tcr-engine/report" "os" "path/filepath" ) diff --git a/tcr-engine/toolchain/toolchain_test.go b/tcr-engine/toolchain/toolchain_test.go index e3d29ecf..671d23eb 100644 --- a/tcr-engine/toolchain/toolchain_test.go +++ b/tcr-engine/toolchain/toolchain_test.go @@ -1,7 +1,7 @@ package toolchain import ( - "github.com/mengdaming/tcr-engine/language" + "github.com/murex/tcr-engine/language" "github.com/stretchr/testify/assert" "os" "path/filepath" diff --git a/tcr-engine/ui/user_interface.go b/tcr-engine/ui/user_interface.go index fe947a33..5d93ceb3 100644 --- a/tcr-engine/ui/user_interface.go +++ b/tcr-engine/ui/user_interface.go @@ -1,8 +1,8 @@ package ui import ( - "github.com/mengdaming/tcr-engine/role" - "github.com/mengdaming/tcr-engine/runmode" + "github.com/murex/tcr-engine/role" + "github.com/murex/tcr-engine/runmode" ) // UserInterface provides the interface to be satisfied by a UI implementation to be able to interact diff --git a/tcr-engine/vcs/git_impl.go b/tcr-engine/vcs/git_impl.go index 5e2c99ea..450b9eda 100644 --- a/tcr-engine/vcs/git_impl.go +++ b/tcr-engine/vcs/git_impl.go @@ -9,7 +9,7 @@ import ( "github.com/go-git/go-git/v5/plumbing" "github.com/go-git/go-git/v5/plumbing/storer" "github.com/go-git/go-git/v5/storage/filesystem" - "github.com/mengdaming/tcr-engine/report" + "github.com/murex/tcr-engine/report" "path/filepath" "strings" ) diff --git a/tcr-gui/cmd/root.go b/tcr-gui/cmd/root.go index 87f69cd2..ab26a968 100644 --- a/tcr-gui/cmd/root.go +++ b/tcr-gui/cmd/root.go @@ -1,10 +1,10 @@ package cmd import ( - "github.com/mengdaming/tcr-engine/engine" - "github.com/mengdaming/tcr-engine/runmode" - "github.com/mengdaming/tcr-engine/settings" - "github.com/mengdaming/tcr-gui/gui" + "github.com/murex/tcr-engine/engine" + "github.com/murex/tcr-engine/runmode" + "github.com/murex/tcr-engine/settings" + "github.com/murex/tcr-gui/gui" "github.com/mitchellh/go-homedir" "github.com/spf13/cobra" "github.com/spf13/viper" diff --git a/tcr-gui/go.mod b/tcr-gui/go.mod index 8daee840..4896ab49 100644 --- a/tcr-gui/go.mod +++ b/tcr-gui/go.mod @@ -1,16 +1,16 @@ -module github.com/mengdaming/tcr-gui +module github.com/murex/tcr-gui go 1.17 -replace github.com/mengdaming/tcr-engine => ../tcr-engine +replace github.com/murex/tcr-engine => ../tcr-engine -replace github.com/mengdaming/tcr-cli => ../tcr-cli +replace github.com/murex/tcr-cli => ../tcr-cli require ( fyne.io/fyne/v2 v2.1.0 - github.com/mengdaming/tcr-cli v0.0.0-00010101000000-000000000000 - github.com/mengdaming/tcr-engine v0.0.0-00010101000000-000000000000 github.com/mitchellh/go-homedir v1.1.0 + github.com/murex/tcr-cli v0.0.0-00010101000000-000000000000 + github.com/murex/tcr-engine v0.0.0-00010101000000-000000000000 github.com/spf13/cobra v1.2.1 github.com/spf13/viper v1.8.1 ) diff --git a/tcr-gui/gui/action_bar.go b/tcr-gui/gui/action_bar.go index a7987278..55b07783 100644 --- a/tcr-gui/gui/action_bar.go +++ b/tcr-gui/gui/action_bar.go @@ -5,7 +5,7 @@ import ( "fyne.io/fyne/v2/container" "fyne.io/fyne/v2/layout" "fyne.io/fyne/v2/widget" - "github.com/mengdaming/tcr-engine/runmode" + "github.com/murex/tcr-engine/runmode" ) // ActionBar is the area containing the buttons that the user can use to start/stop TCR engine. diff --git a/tcr-gui/gui/action_bar_mob.go b/tcr-gui/gui/action_bar_mob.go index 4d6fc95c..051c9445 100644 --- a/tcr-gui/gui/action_bar_mob.go +++ b/tcr-gui/gui/action_bar_mob.go @@ -6,7 +6,7 @@ import ( "fyne.io/fyne/v2/layout" "fyne.io/fyne/v2/theme" "fyne.io/fyne/v2/widget" - "github.com/mengdaming/tcr-engine/engine" + "github.com/murex/tcr-engine/engine" ) // MobActionBarButtonPanel is the action bar panel containing the buttons when running in mob diff --git a/tcr-gui/gui/action_bar_solo.go b/tcr-gui/gui/action_bar_solo.go index 94673fa2..7ef46ee6 100644 --- a/tcr-gui/gui/action_bar_solo.go +++ b/tcr-gui/gui/action_bar_solo.go @@ -6,7 +6,7 @@ import ( "fyne.io/fyne/v2/layout" "fyne.io/fyne/v2/theme" "fyne.io/fyne/v2/widget" - "github.com/mengdaming/tcr-engine/engine" + "github.com/murex/tcr-engine/engine" ) // SoloActionBarButtonPanel is the action bar panel containing the buttons when running in solo diff --git a/tcr-gui/gui/gui.go b/tcr-gui/gui/gui.go index 88be30ac..91d5285f 100644 --- a/tcr-gui/gui/gui.go +++ b/tcr-gui/gui/gui.go @@ -6,12 +6,12 @@ import ( "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/container" "fyne.io/fyne/v2/layout" - "github.com/mengdaming/tcr-cli/cli" - "github.com/mengdaming/tcr-engine/engine" - "github.com/mengdaming/tcr-engine/report" - "github.com/mengdaming/tcr-engine/role" - "github.com/mengdaming/tcr-engine/runmode" - "github.com/mengdaming/tcr-engine/ui" + "github.com/murex/tcr-cli/cli" + "github.com/murex/tcr-engine/engine" + "github.com/murex/tcr-engine/report" + "github.com/murex/tcr-engine/role" + "github.com/murex/tcr-engine/runmode" + "github.com/murex/tcr-engine/ui" "image/color" "strings" ) diff --git a/tcr-gui/gui/session_panel.go b/tcr-gui/gui/session_panel.go index 6cb96070..e46b3ffc 100644 --- a/tcr-gui/gui/session_panel.go +++ b/tcr-gui/gui/session_panel.go @@ -5,8 +5,8 @@ import ( "fyne.io/fyne/v2" "fyne.io/fyne/v2/container" "fyne.io/fyne/v2/widget" - "github.com/mengdaming/tcr-engine/engine" - "github.com/mengdaming/tcr-engine/runmode" + "github.com/murex/tcr-engine/engine" + "github.com/murex/tcr-engine/runmode" ) // SessionPanel is the panel showing all information related to the current TCR session diff --git a/tcr-gui/main.go b/tcr-gui/main.go index c2c16afd..5e2568d1 100644 --- a/tcr-gui/main.go +++ b/tcr-gui/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/mengdaming/tcr-gui/cmd" + "github.com/murex/tcr-gui/cmd" ) func main() {