Current section
Files
Jump to
Current section
Files
lib/bardecode.ex
defmodule Bardecode do
@moduledoc """
Documentation for Bardecode.
"""
@on_load :load_nifs
def load_nifs do
:erlang.load_nif('./priv/bardecode', 0)
end
@doc """
read_barcode
"""
@spec read_barcode(file :: String.t(), license :: String.t()) :: any()
def read_barcode(_file, _license) do
raise "NIF read_barcode/2 not implemented"
end
end