interfaceをチョットいじった

This commit is contained in:
keita
2021-02-21 22:51:15 +09:00
parent 788eda9d4a
commit 255536209c
10 changed files with 21 additions and 21 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
#include "cocoatweet/api/status/update.h"
#include <iostream>
namespace CocoaTweet::API::Statuses {
Update::Update() {
@@ -11,7 +12,7 @@ void Update::status(const std::string _status) {
}
void Update::process(std::weak_ptr<CocoaTweet::OAuth::OAuth1> _oauth) {
postInterface::process(_oauth,
HttpPost::process(_oauth,
[](const std::string& _srv) { std::cout << _srv << std::endl; });
}