Packages

Elixir implementation of D-Bus StatusNotifierItem and com.canonical.dbusmenu

Current section

Files

Jump to
ex_sni lib ref.ex
Raw

lib/ref.ex

defmodule ExSni.Ref do
defstruct pid: nil,
path: "/",
interface: nil
@type t() :: %__MODULE__{
pid: ExDBus.Service.pid() | nil,
path: String.t() | nil,
interface: String.t() | nil
}
end