Skip to content

Commit 3bbcd07

Browse files
committed
Update bot.rs
1 parent 698699e commit 3bbcd07

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/bot.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,7 @@ impl LineBot {
223223

224224
// TODO: More Request Body
225225
// https://developers.line.biz/ja/reference/messaging-api/#create-upload-audience-group-by-file-request-body
226-
pub fn create_audience_group_for_uploading_user_ids_by_file(
227-
&self,
228-
_description: &str,
229-
) -> Result<Response, Error> {
226+
pub fn create_audience_group_for_uploading_user_ids_by_file(&self) -> Result<Response, Error> {
230227
// TODO: Fix HTTPClient post
231228
// File send
232229
self.http_client
@@ -252,10 +249,7 @@ impl LineBot {
252249

253250
// TODO: More Request Body
254251
// https://developers.line.biz/ja/reference/messaging-api/#update-upload-audience-group-by-file-request-body
255-
pub fn update_audience_group_for_uploading_user_ids_by_file(
256-
&self,
257-
_description: &str,
258-
) -> Result<Response, Error> {
252+
pub fn update_audience_group_for_uploading_user_ids_by_file(&self) -> Result<Response, Error> {
259253
// ファイルを受け取り、HTTPClientに渡す。
260254
// HTTPClientの改修必須
261255
self.http_client

0 commit comments

Comments
 (0)