Current section
Files
Jump to
Current section
Files
lib/aws_ex_ray/client/sandbox.ex
defmodule AwsExRay.Client.Sandbox do
use GenServer
def send(data) do
AwsExRay.Config.sandbox_sink_module.send(data)
end
def start_link(opts) do
GenServer.start_link(__MODULE__, opts, name: __MODULE__)
end
def init(_opts) do
{:ok, []}
end
end