Refactor file type functions

This commit is contained in:
Deluan 2022-12-23 11:32:39 -05:00 committed by Deluan Quintão
parent 9ec349dce0
commit 8c1cd9c273
10 changed files with 75 additions and 98 deletions

View file

@ -2,7 +2,6 @@ package model
import (
"fmt"
"path/filepath"
"strconv"
"strings"
"time"
@ -138,8 +137,3 @@ type PlaylistTrackRepository interface {
DeleteAll() error
Reorder(pos int, newPos int) error
}
func IsValidPlaylist(filePath string) bool {
extension := strings.ToLower(filepath.Ext(filePath))
return extension == ".m3u" || extension == ".m3u8" || extension == ".nsp"
}