summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_cli/lib/rabbitmq/cli/core/merges_no_defaults.ex
blob: 0ee6f3f05a9096a09622732d5342684561fdd550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
## This Source Code Form is subject to the terms of the Mozilla Public
## License, v. 2.0. If a copy of the MPL was not distributed with this
## file, You can obtain one at https://mozilla.org/MPL/2.0/.
##
## Copyright (c) 2007-2020 VMware, Inc. or its affiliates.  All rights reserved.

# Should be used by commands that require rabbit app to be stopped
# but need no other execution environment validators.
defmodule RabbitMQ.CLI.Core.MergesNoDefaults do
  defmacro __using__(_) do
    quote do
      def merge_defaults(args, opts), do: {args, opts}
    end
  end
end