mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 11:02:52 +03:00
9 lines
219 B
Elixir
9 lines
219 B
Elixir
defmodule Plausible.Google.Api.Mock do
|
|
def fetch_stats(_auth, _query) do
|
|
{:ok, [
|
|
%{"name" => "simple web analytics", "count" => 6},
|
|
%{"name" => "open-source analytics", "count" => 2},
|
|
]}
|
|
end
|
|
end
|