Packages
kanta_sync_plugin
0.1.0
Kanta plugin for syncing translations on staging/dev with production
Current section
Files
Jump to
Current section
Files
lib/plugin.ex
defmodule Kanta.Sync.Plugin do
@moduledoc """
Documentation for `KantaSyncPlugin`.
"""
use GenServer
def start_link(opts) do
GenServer.start_link(__MODULE__, opts, name: opts[:name])
end
def init(_opts) do
{:ok, %{}}
end
end