Packages

Library to enable the creation of distributed systems via the Viewstamped Replication Protocol.

Current section

Files

Jump to
vsrex lib vsrex.ex
Raw

lib/vsrex.ex

defmodule Vsrex do
@moduledoc """
Documentation for `Vsrex`.
"""
@doc """
Says hello like a pokemon
## Examples
iex> Vsrex.hello()
:vsrex
"""
def hello do
:vsrex
end
end