2
0

get.go 582 B

123456789101112131415161718
  1. package v2
  2. import (
  3. "context"
  4. "fmt"
  5. )
  6. // Get implements the functionality of the `porter get` command for validate apply v2 projects
  7. func Get(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. }
  11. // GetValues implements the functionality of the `porter get values` command for validate apply v2 projects
  12. func GetValues(ctx context.Context) error {
  13. fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
  14. return nil
  15. }