sloane.sh/lib/sloane_sh.ex

14 lines
242 B
Elixir
Raw Normal View History

2024-02-16 16:09:35 -05:00
defmodule SloaneSH do
@moduledoc """
2024-02-16 16:07:16 -05:00
Sloane's personal static site generator powering [sloane.sh](https://sloane.sh).
2024-02-16 16:09:35 -05:00
"""
2024-02-16 17:05:28 -05:00
def build(_opts \\ []) do
:ok
end
def watch(_opts \\ []) do
2024-02-16 17:27:46 -05:00
SloaneSH.Watch.start_link()
2024-02-16 17:05:28 -05:00
end
2024-02-16 16:09:35 -05:00
end