Skip to content

Commit

Permalink
refactor: Rename Go module to align with repository name (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov authored Nov 21, 2024
1 parent 78a10b2 commit 9ead566
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CLI utility to launch [n8n task runners](https://docs.n8n.io/PENDING).
./task-runner-launcher launch -type javascript
2024/11/15 13:53:33 Starting to execute `launch` command...
2024/11/15 13:53:33 Loaded config file loaded with a single runner config
2024/11/15 13:53:33 Changed into working directory: /Users/ivov/Development/n8n-launcher/bin
2024/11/15 13:53:33 Changed into working directory: /Users/ivov/Development/task-runner-launcher/bin
2024/11/15 13:53:33 Filtered environment variables
2024/11/15 13:53:33 Authenticated with n8n main instance
2024/11/15 13:53:33 Launching runner...
Expand Down
4 changes: 2 additions & 2 deletions cmd/launcher/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"flag"
"os"

"n8n-launcher/internal/commands"
"n8n-launcher/internal/logs"
"task-runner-launcher/internal/commands"
"task-runner-launcher/internal/logs"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module n8n-launcher
module task-runner-launcher

go 1.23.3

Expand Down
2 changes: 1 addition & 1 deletion internal/auth/handshake.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"crypto/rand"
"encoding/hex"
"fmt"
"n8n-launcher/internal/logs"
"task-runner-launcher/internal/logs"
"net/url"
"strings"

Expand Down
8 changes: 4 additions & 4 deletions internal/commands/launch.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package commands

import (
"fmt"
"n8n-launcher/internal/auth"
"n8n-launcher/internal/config"
"n8n-launcher/internal/env"
"n8n-launcher/internal/logs"
"task-runner-launcher/internal/auth"
"task-runner-launcher/internal/config"
"task-runner-launcher/internal/env"
"task-runner-launcher/internal/logs"
"os"
"os/exec"
)
Expand Down

0 comments on commit 9ead566

Please sign in to comment.