First commit

This commit is contained in:
Joakim Nylén
2019-04-11 23:39:59 +02:00
commit a6776fdca8
14 changed files with 694 additions and 0 deletions

8
lib/xler/native.ex Normal file
View File

@@ -0,0 +1,8 @@
defmodule Xler.Native do
use Rustler, otp_app: :xler, crate: :xler_native
def parse(_filename, _worksheet), do: error()
def worksheets(_filename), do: error()
defp error, do: :erlang.nif_error(:nif_not_loaded)
end