| 123456789101112131415161718192021222324 |
- package v2
- import (
- "context"
- "fmt"
- )
- // ListAll implements the functionality of the `porter list all` command for validate apply v2 projects
- func ListAll(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
- // ListApps implements the functionality of the `porter list apps` command for validate apply v2 projects
- func ListApps(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
- // ListJobs implements the functionality of the `porter list jobs` command for validate apply v2 projects
- func ListJobs(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
|