mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 11:02:52 +03:00
11 lines
186 B
Elixir
11 lines
186 B
Elixir
defmodule Plausible.PaddleApi.Mock do
|
|
def get_subscription(_) do
|
|
{:ok, %{
|
|
"next_payment" => %{
|
|
"date" => "2019-07-10",
|
|
"amount" => 6
|
|
}
|
|
}}
|
|
end
|
|
end
|