lib/image.ex

defmodule Identicon.Image do
  @moduledoc """
  This module contains the defstruct of the image
  """
  defstruct hex: nil, color: nil, grid: nil, pixel_map: nil
end