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
+20
View File
@@ -0,0 +1,20 @@
#ifndef TOKENMANAGER_H_
#define TOKENMANAGER_H_
#include"Models/Token.h"
#include"Models/User.h"
namespace Managers
{
class TokenManager
{
public:
TokenManager(const Models::User);
Models::Token requestToken();
private:
Models::User user;
};
}
#endif