Fix Tesla warning.

No need to implement get/post functions here

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-08-11 10:13:25 +02:00
parent dba1072af8
commit 4fc1a984f9
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 0 additions and 8 deletions

View File

@ -19,12 +19,4 @@ defmodule Mobilizon.Service.HTTP.BaseClient do
plug(Tesla.Middleware.Timeout, timeout: 10_000)
plug(Tesla.Middleware.Headers, [{"User-Agent", @user_agent}])
def get(url) do
get(url)
end
def post(url, data) do
post(url, data)
end
end