lib/image.ex

defmodule Identicon.Image do
  @moduledoc """
  This holds the data structures of our final image
  """
  defstruct hex: nil, color: nil, grid: nil, pixel_map: nil
end