Packages

WebAuthnLite is W3C Web Authentication API (a.k.a. WebAuthN / FIDO 2.0) RP library in Elixir.

Current section

Files

Jump to
web_authn_lite lib web_authn_lite.ex
Raw

lib/web_authn_lite.ex

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