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
|
go 1.22.2
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
package commands
|
package commands
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
runner "courgette/internal/runner"
|
||||||
|
workflow "courgette/internal/workflow"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
runner "runner/internal/runner"
|
|
||||||
workflow "runner/internal/workflow"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func ExecuteWorkflow(configuration Configuration, workflowFile string) error {
|
func ExecuteWorkflow(configuration Configuration, workflowFile string) error {
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
package commands
|
package commands
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
workflow "courgette/internal/workflow"
|
||||||
"errors"
|
"errors"
|
||||||
"log"
|
"log"
|
||||||
workflow "runner/internal/workflow"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func ValidateWorkflow(configuration Configuration, workflowPath string) error {
|
func ValidateWorkflow(configuration Configuration, workflowPath string) error {
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
package runner
|
package runner
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
workflow "courgette/internal/workflow"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
workflow "runner/internal/workflow"
|
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package runner
|
package runner
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
workflow "courgette/internal/workflow"
|
||||||
"errors"
|
"errors"
|
||||||
workflow "runner/internal/workflow"
|
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
2
main.go
2
main.go
|
@ -2,10 +2,10 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
commands "courgette/internal/commands"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
commands "runner/internal/commands"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var cli = &cobra.Command{
|
var cli = &cobra.Command{
|
||||||
|
|
Loading…
Reference in a new issue