Remove GenServer from FFI.Library

This commit is contained in:
Josh Nussbaum
2015-09-20 21:16:16 -04:00
parent f1a8e8cace
commit 5310d6f92b
2 changed files with 1 additions and 10 deletions

View File

@@ -2,13 +2,6 @@ defmodule FFI.Library do
defmacro __using__(_x) do
quote do
import FFI.Library
def start_link(args \\ []) do
GenServer.start_link(__MODULE__, :init, [])
end
def init(state),
do: {:ok, state}
end
end