Skip to content

Commit 9ead566

Browse files
authored
refactor: Rename Go module to align with repository name (#12)
1 parent 78a10b2 commit 9ead566

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ CLI utility to launch [n8n task runners](https://docs.n8n.io/PENDING).
66
./task-runner-launcher launch -type javascript
77
2024/11/15 13:53:33 Starting to execute `launch` command...
88
2024/11/15 13:53:33 Loaded config file loaded with a single runner config
9-
2024/11/15 13:53:33 Changed into working directory: /Users/ivov/Development/n8n-launcher/bin
9+
2024/11/15 13:53:33 Changed into working directory: /Users/ivov/Development/task-runner-launcher/bin
1010
2024/11/15 13:53:33 Filtered environment variables
1111
2024/11/15 13:53:33 Authenticated with n8n main instance
1212
2024/11/15 13:53:33 Launching runner...

cmd/launcher/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"flag"
55
"os"
66

7-
"n8n-launcher/internal/commands"
8-
"n8n-launcher/internal/logs"
7+
"task-runner-launcher/internal/commands"
8+
"task-runner-launcher/internal/logs"
99
)
1010

1111
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module n8n-launcher
1+
module task-runner-launcher
22

33
go 1.23.3
44

internal/auth/handshake.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"crypto/rand"
55
"encoding/hex"
66
"fmt"
7-
"n8n-launcher/internal/logs"
7+
"task-runner-launcher/internal/logs"
88
"net/url"
99
"strings"
1010

internal/commands/launch.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package commands
22

33
import (
44
"fmt"
5-
"n8n-launcher/internal/auth"
6-
"n8n-launcher/internal/config"
7-
"n8n-launcher/internal/env"
8-
"n8n-launcher/internal/logs"
5+
"task-runner-launcher/internal/auth"
6+
"task-runner-launcher/internal/config"
7+
"task-runner-launcher/internal/env"
8+
"task-runner-launcher/internal/logs"
99
"os"
1010
"os/exec"
1111
)

0 commit comments

Comments
 (0)