Current section

Files

Jump to
baz lib baz iex.ex
Raw

lib/baz/iex.ex

defmodule Baz.IEx do
@moduledoc """
Commands to control `baz` within an Elixir interactive shell
"""
alias Baz.IEx.Commands
@spec help :: no_return
defdelegate help, to: Commands.Help
@spec normalized_sinks() :: no_return
defdelegate normalized_sinks(options \\ []), to: Commands.NormalizedSinks, as: :filter_and_order
@spec raw_sinks() :: no_return
defdelegate raw_sinks(options \\ []), to: Commands.RawSinks, as: :filter_and_order
@spec collection_packs() :: no_return
@spec collection_packs(Commands.CollectionPacks.opts()) :: no_return
defdelegate collection_packs(options \\ []), to: Commands.CollectionPacks, as: :filter_and_order
@spec collections() :: no_return
@spec collections(Commands.Collections.opts()) :: no_return
defdelegate collections(options \\ []), to: Commands.Collections, as: :filter_and_order
@spec collection_assets() :: no_return
@spec collection_assets(Commands.CollectionAssets.opts()) :: no_return
defdelegate collection_assets(options \\ []),
to: Commands.CollectionAssets,
as: :filter_and_order
@spec venues() :: no_return
@spec venues(Commands.Venues.opts()) :: no_return
defdelegate venues(options \\ []), to: Commands.Venues, as: :filter_and_order
@spec collection_imports() :: no_return
@spec collection_imports(Commands.CollectionImports.opts()) :: no_return
defdelegate collection_imports(options \\ []),
to: Commands.CollectionImports,
as: :filter_and_order
@spec collection_asset_imports() :: no_return
@spec collection_asset_imports(Commands.CollectionAssetImports.opts()) :: no_return
defdelegate collection_asset_imports(options \\ []),
to: Commands.CollectionAssetImports,
as: :filter_and_order
@spec import_collection() :: no_return
@spec import_collection(Commands.ImportCollection.opts()) :: no_return
defdelegate import_collection(options \\ []), to: Commands.ImportCollection, as: :create
@spec import_collection_assets() :: no_return
@spec import_collection_assets(Commands.ImportCollectionAssets.opts()) :: no_return
defdelegate import_collection_assets(options \\ []),
to: Commands.ImportCollectionAssets,
as: :create
@spec collection_events() :: no_return
@spec collection_events(Commands.CollectionEvents.opts()) :: no_return
defdelegate collection_events(options \\ []),
to: Commands.CollectionEvents,
as: :filter_and_order
@spec collection_event_imports() :: no_return
@spec collection_event_imports(Commands.CollectionEventImports.opts()) :: no_return
defdelegate collection_event_imports(options \\ []),
to: Commands.CollectionEventImports,
as: :filter_and_order
@spec import_collection_events() :: no_return
@spec import_collection_events(Commands.ImportCollectionEvents.opts()) :: no_return
defdelegate import_collection_events(options \\ []),
to: Commands.ImportCollectionEvents,
as: :create
end