2
0

bluegreen.go 346 B

123456789101112
  1. package v2
  2. import (
  3. "context"
  4. "fmt"
  5. )
  6. // BlueGreenSwitch implements the functionality of the `porter deply blue-green-switch` command for validate apply v2 projects
  7. func BlueGreenSwitch(ctx context.Context) error {
  8. fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
  9. return nil
  10. }