Fix missing cliutil

Aligns slightly more with the linux flavor
This commit is contained in:
kjake 2025-01-20 15:11:19 -05:00
parent 822fbc379d
commit 49c3be3188
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,9 @@ import (
"fmt" "fmt"
"os" "os"
cli "github.com/urfave/cli/v2" "github.com/urfave/cli/v2"
"github.com/kjake/cloudflared/cmd/cloudflared/cliutil"
) )
func runApp(app *cli.App, graceShutdownC chan struct{}) { func runApp(app *cli.App, graceShutdownC chan struct{}) {

View File

@ -1,4 +1,4 @@
//go:build !darwin || !linux || freebsd || openbsd || netbsd //go:build !windows && !darwin && !linux
package diagnostic package diagnostic