defmodule WebAuthnLite do @moduledoc """ W3C Web Authentication API (a.k.a. WebAuthN / FIDO 2.0) RP library in Elixir """ @doc """ Hello world. ## Examples iex> WebAuthnLite.hello :world """ def hello do :world end end