utils.go 323 B

123456789101112131415161718192021
  1. package preview
  2. type Source struct {
  3. Name string
  4. Repo string
  5. Version string
  6. IsApplication bool
  7. SourceValues map[string]interface{}
  8. }
  9. type Target struct {
  10. AppName string
  11. Project uint
  12. Cluster uint
  13. Namespace string
  14. }
  15. type RandomStringDriverConfig struct {
  16. Length int
  17. Lower bool
  18. }