Packages

Kanta plugin for syncing translations on staging/dev with production

Current section

Files

Jump to
kanta_sync_plugin lib plugin.ex
Raw

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