Added functionality to upload a song. Need to write parse classes to parse the base API HTTP endpoint, and the source path. #7

This commit is contained in:
amazing-username
2019-06-03 22:29:20 -04:00
parent 56bf7f1900
commit 8230f7b5ff
10 changed files with 215 additions and 12 deletions
-2
View File
@@ -103,7 +103,6 @@ namespace Managers
flg = Flags{};
continue;
}
cout<<"\nprovided flag: "<<flag<<endl;
if (std::any_of(supportedFlags.begin(), supportedFlags.end(),
[&](string val)
{
@@ -113,7 +112,6 @@ namespace Managers
return !val.compare(flag);
}))
{
cout<<"Flag : "<<flag<<" is valid"<<endl;
flg.flag = flag;
}
else