cli/frontend.go
cli/frontend.goBrowse 1970 files
88 tokens
323 bytes
Token encoding: o200k_base
Snapshot 21a254f
← Back to SKILL.md
1package cli2 3import (4 "context"5 6 "github.com/railwayapp/railpack/buildkit"7 "github.com/urfave/cli/v3"8)9 10var FrontendCommand = &cli.Command{11 Name: "frontend",12 Usage: "Start the BuildKit GRPC frontend server",13 Action: func(ctx context.Context, cmd *cli.Command) error {14 buildkit.StartFrontend()15 16 return nil17 },18}19