mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
19b9a8bdf6
* Add support for IP-based bans. Closes #1534 * Linter cleanup
19 lines
312 B
Go
19 lines
312 B
Go
package playlist
|
|
|
|
import "os"
|
|
|
|
// WritePlaylist writes the playlist to disk.
|
|
func WritePlaylist(data string, filePath string) error {
|
|
// nolint:gosec
|
|
f, err := os.Create(filePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer f.Close()
|
|
|
|
if _, err := f.WriteString(data); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|