chore: use placeholder project name

This commit is contained in:
Marc 2024-08-02 19:49:56 -04:00
parent 0ad6e5b044
commit 7f97a23945
Signed by: marc
GPG key ID: 048E042F22B5DC79
6 changed files with 7 additions and 7 deletions

2
go.mod
View file

@ -1,4 +1,4 @@
module runner
module courgette
go 1.22.2

View file

@ -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 {

View file

@ -1,9 +1,9 @@
package commands
import (
workflow "courgette/internal/workflow"
"errors"
"log"
workflow "runner/internal/workflow"
)
func ValidateWorkflow(configuration Configuration, workflowPath string) error {

View file

@ -1,10 +1,10 @@
package runner
import (
workflow "courgette/internal/workflow"
"errors"
"fmt"
"log"
workflow "runner/internal/workflow"
"sync"
)

View file

@ -1,8 +1,8 @@
package runner
import (
workflow "courgette/internal/workflow"
"errors"
workflow "runner/internal/workflow"
"testing"
)

View file

@ -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{