apply.go 224 B

123456789101112
  1. package v2
  2. import (
  3. "context"
  4. "fmt"
  5. )
  6. // Apply implements the functionality of the `porter apply` command for validate apply v2 projects
  7. func Apply(ctx context.Context) error {
  8. fmt.Println("Coming soon!")
  9. return nil
  10. }