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 go 1.22.2

View file

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

View file

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

View file

@ -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"
) )

View file

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

View file

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