Skip to content

Commit f1e33e2

Browse files
committed
Merge branch 'feature/sample' into feature/doc
2 parents eaa6975 + b483749 commit f1e33e2

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

src/bot.rs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -328,10 +328,9 @@ impl LineBot {
328328
/// ```
329329
/// let res: Result<Response, Error> = bot.create_audience_group_for_uploading_user_ids_by_file();
330330
/// ```
331-
pub fn create_audience_group_for_uploading_user_ids_by_file(
332-
&self,
333-
_description: &str,
334-
) -> Result<Response, Error> {
331+
pub fn create_audience_group_for_uploading_user_ids_by_file(&self) -> Result<Response, Error> {
332+
// TODO: Fix HTTPClient post
333+
// File send
335334
self.http_client
336335
.post("/audienceGroup/upload/byFile", json!({}))
337336
}
@@ -358,10 +357,7 @@ impl LineBot {
358357
/// # Note
359358
/// **TODO: Unimplemented: File send <br>**
360359
/// Adds new user IDs or IFAs to an audience for uploading user IDs [\[detail\]](https://developers.line.biz/ja/reference/messaging-api/#update-upload-audience-group-by-file-request-body)
361-
pub fn update_audience_group_for_uploading_user_ids_by_file(
362-
&self,
363-
_description: &str,
364-
) -> Result<Response, Error> {
360+
pub fn update_audience_group_for_uploading_user_ids_by_file(&self) -> Result<Response, Error> {
365361
// ファイルを受け取り、HTTPClientに渡す。
366362
// HTTPClientの改修必須
367363
self.http_client

0 commit comments

Comments
 (0)