diff options
Diffstat (limited to 'deps/rabbit_common/include/resource.hrl')
-rw-r--r-- | deps/rabbit_common/include/resource.hrl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/deps/rabbit_common/include/resource.hrl b/deps/rabbit_common/include/resource.hrl new file mode 100644 index 0000000000..5b2697f4d0 --- /dev/null +++ b/deps/rabbit_common/include/resource.hrl @@ -0,0 +1,14 @@ +%% 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. +%% + +-record(resource, { + virtual_host, + %% exchange, queue, ... + kind, + %% name as a binary + name +}). |