A little cleanup

This commit is contained in:
Gabe Kangas
2020-06-03 23:53:39 -07:00
parent 539c938f63
commit 29f51f6ccc
4 changed files with 10 additions and 51 deletions

View File

@@ -30,12 +30,6 @@ func startFfmpeg(configuration Config) {
verifyError(err)
}
func verifyError(e error) {
if e != nil {
panic(e)
}
}
func writePlaylist(data string, filePath string) {
f, err := os.Create(filePath)
defer f.Close()