Packages

This is the core of the dictionary service which has around 8k words

Current section

Files

Jump to
dictionary lib dictionary.ex
Raw

lib/dictionary.ex

defmodule Dictionary do
@moduledoc false
alias Dictionary.WordList
defdelegate random_word(), to: WordList
end