summaryrefslogtreecommitdiff
path: root/plugin.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-12-20 14:15:00 -0600
committerJeff Carr <[email protected]>2023-12-20 14:15:00 -0600
commit9f7da73c67e391e1797479f99a0578bde0fe2c0e (patch)
treee635091058c4fd6da949e6ccbd1291fa3c929cb3 /plugin.go
parent85b9a036c289fe840e69e1852866f429b87cf63e (diff)
move to go.wit.com/guiv0.9.0
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'plugin.go')
-rw-r--r--plugin.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin.go b/plugin.go
index 1ce900c..88c737b 100644
--- a/plugin.go
+++ b/plugin.go
@@ -10,7 +10,7 @@ import (
"embed"
"plugin"
- "git.wit.org/wit/gui/toolkit"
+ "go.wit.com/gui/toolkit"
)
var err error
@@ -107,7 +107,7 @@ func sendCallback(p *aplug, funcName string) func(chan toolkit.Action) {
TODO: use LD_LIBRARY_PATH ?
This searches in the following order for the plugin .so files:
./toolkit/
- ~/go/src/go.wit.org/gui/toolkit/
+ ~/go/src/go.wit.com/gui/toolkit/
/usr/lib/go-gui/
*/
func searchPaths(name string) *aplug {
@@ -143,7 +143,7 @@ func searchPaths(name string) *aplug {
if err != nil {
log(logError, "searchPaths() error. exiting here?")
} else {
- filename = homeDir + "/go/src/git.wit.org/wit/gui/toolkit/" + name + ".so"
+ filename = homeDir + "/go/src/go.wit.com/gui/toolkit/" + name + ".so"
p = initToolkit(name, filename)
if (p != nil) {
return p