Packages

Elixir/Phoenix admin framework for resources, dashboards, datasets, actions, authorization, and service-owned remote admin surfaces.

Current section

Files

Jump to
incant lib incant dashboard widget.ex
Raw

lib/incant/dashboard/widget.ex

defmodule Incant.Dashboard.Widget do
@moduledoc """
Metadata for a dashboard widget.
"""
@type t :: %__MODULE__{
id: atom,
type: atom,
opts: keyword
}
defstruct [:id, :type, opts: []]
end