chore: use placeholder project name
This commit is contained in:
parent
0ad6e5b044
commit
7f97a23945
6 changed files with 7 additions and 7 deletions
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module runner
|
||||
module courgette
|
||||
|
||||
go 1.22.2
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
package commands
|
||||
|
||||
import (
|
||||
runner "courgette/internal/runner"
|
||||
workflow "courgette/internal/workflow"
|
||||
"errors"
|
||||
"fmt"
|
||||
"log"
|
||||
runner "runner/internal/runner"
|
||||
workflow "runner/internal/workflow"
|
||||
)
|
||||
|
||||
func ExecuteWorkflow(configuration Configuration, workflowFile string) error {
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
package commands
|
||||
|
||||
import (
|
||||
workflow "courgette/internal/workflow"
|
||||
"errors"
|
||||
"log"
|
||||
workflow "runner/internal/workflow"
|
||||
)
|
||||
|
||||
func ValidateWorkflow(configuration Configuration, workflowPath string) error {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package runner
|
||||
|
||||
import (
|
||||
workflow "courgette/internal/workflow"
|
||||
"errors"
|
||||
"fmt"
|
||||
"log"
|
||||
workflow "runner/internal/workflow"
|
||||
"sync"
|
||||
)
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package runner
|
||||
|
||||
import (
|
||||
workflow "courgette/internal/workflow"
|
||||
"errors"
|
||||
workflow "runner/internal/workflow"
|
||||
"testing"
|
||||
)
|
||||
|
||||
|
|
2
main.go
2
main.go
|
@ -2,10 +2,10 @@ package main
|
|||
|
||||
import (
|
||||
"context"
|
||||
commands "courgette/internal/commands"
|
||||
"github.com/spf13/cobra"
|
||||
"log"
|
||||
"os"
|
||||
commands "runner/internal/commands"
|
||||
)
|
||||
|
||||
var cli = &cobra.Command{
|
||||
|
|
Loading…
Reference in a new issue