Add an example for leader election based multiple controller

This commit is contained in:
Eishun Kondoh 2018-02-09 00:49:57 +09:00
parent 658b7448da
commit ce56d2b7be
14 changed files with 242 additions and 0 deletions

View file

@ -0,0 +1,8 @@
defmodule LeaderExampleTest do
use ExUnit.Case
doctest LeaderExample
test "greets the world" do
assert LeaderExample.hello() == :world
end
end

View file

@ -0,0 +1 @@
ExUnit.start()