README.md

# RandomUser

## Features

- [x] Return one random user
- [x] Return multiple random users
- [ ] Choose gender, nationality and other options
- [ ] Format results

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:

  1. Add `random_user` to your list of dependencies in `mix.exs`:

    ```elixir
    def deps do
      [{:random_user, "~> 0.1.1"}]
    end
    ```

  2. Ensure `random_user` is started before your application:

    ```elixir
    def application do
      [applications: [:random_user]]
    end
    ```