alive
Disco (context) > Bureaucracy

Bureaucracy

Explanation of Bureaucracy


concepts

attrs

fields
∴ bureaucracy_field (integer)

Explanation of bureaucracy_field


signatures

samples

implements

protocols

lib/disco/bureaucracy.ex
defmodule Disco.Bureaucracy do @moduledoc "Explanation of Bureaucracy" @type t() :: %__MODULE__{bureaucracy_field: integer} defstruct bureaucracy_field: nil end

defmodule Disco.Bureaucracy do
  @moduledoc "Explanation of Bureaucracy"
  @type t() :: %__MODULE__{bureaucracy_field: integer}
  defstruct bureaucracy_field: nil
end


test/disco/bureaucracy_test.exs
defmodule Disco.BureaucracyTest do use ExUnit.Case, async: true end

defmodule Disco.BureaucracyTest do
  use ExUnit.Case, async: true
end