summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-08-08 18:48:25 -0300
committerEuAndreh <eu@euandre.org>2024-08-08 18:48:25 -0300
commit81ebc234678af08692aad7f3c2d1128f6c2f75c4 (patch)
treefc5ba312b456d2b2ef20424572d9ca4a9a76edc8 /src
parentrm go.mod (diff)
downloadbinder-81ebc234678af08692aad7f3c2d1128f6c2f75c4.tar.gz
binder-81ebc234678af08692aad7f3c2d1128f6c2f75c4.tar.xz
Makefile: Use "go tool {compile,link}" over "go {build,test}"
Diffstat (limited to 'src')
-rw-r--r--src/binder.go (renamed from src/lib.go)2
-rw-r--r--src/main.go (renamed from src/cmd/main.go)2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.go b/src/binder.go
index 4ece950..8950c29 100644
--- a/src/lib.go
+++ b/src/binder.go
@@ -8,7 +8,7 @@ import (
"strconv"
"syscall"
- g "euandre.org/gobang/src"
+ g "gobang"
)
diff --git a/src/cmd/main.go b/src/main.go
index d9c8379..8fb49be 100644
--- a/src/cmd/main.go
+++ b/src/main.go
@@ -1,6 +1,6 @@
package main
-import "euandre.org/binder/src"
+import "binder"
func main() {
binder.Main()