cloudformation.go 245 B

12345678910111213
  1. package tools
  2. func CloudFormation() *cloudformation {
  3. return &cloudformation{}
  4. }
  5. type (
  6. cloudformation struct{}
  7. )
  8. func (t *cloudformation) CreateStack() {}
  9. func (t *cloudformation) UpdateStack() {}
  10. func (t *cloudformation) DeleteStack() {}