(filenameWithoutExtension, content string)
| 298 | } |
| 299 | |
| 300 | func createSpecFile(filenameWithoutExtension, content string) error { |
| 301 | return os.WriteFile(filenameWithoutExtension+".yaml", []byte(content), 0644) |
| 302 | } |
| 303 | |
| 304 | func createSQLFile(filenameWithoutExtension, content string) error { |
| 305 | return os.WriteFile(filenameWithoutExtension+".sql", []byte(content), 0644) |