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