#103: Remove WAV support #105

Merged
kdeng00 merged 12 commits from tsk-103 into master 2025-02-16 17:24:50 -05:00
3 changed files with 4 additions and 12 deletions
Showing only changes of commit 6bff36bc03 - Show all commits
+1 -9
View File
@@ -8,14 +8,6 @@ using TagLib.Mpeg4;
namespace Icarus.Controllers.Managers; namespace Icarus.Controllers.Managers;
public enum CreateFileResult
{
Unknown = 0,
AlreadyExists = 1,
FileCreatedAndExists = 2
}
public class SongManager : BaseManager public class SongManager : BaseManager
{ {
#region Fields #region Fields
@@ -377,7 +369,7 @@ public class SongManager : BaseManager
} }
public CreateFileResult Create(IFormFile file, string filePath, string prompt) public Icarus.Models.CreateFileResult Create(IFormFile file, string filePath, string prompt)
{ {
if (System.IO.File.Exists(filePath)) if (System.IO.File.Exists(filePath))
{ {