| 123456789101112131415161718 |
- package v2
- import (
- "context"
- "fmt"
- )
- // Get implements the functionality of the `porter get` command for validate apply v2 projects
- func Get(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
- // GetValues implements the functionality of the `porter get values` command for validate apply v2 projects
- func GetValues(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
|