1// Copyright 2022 The AccessKit Authors. All rights reserved.
2// Licensed under the Apache License, Version 2.0 (found in
3// the LICENSE-APACHE file) or the MIT license (found in
4// the LICENSE-MIT file), at your option.
5
6mod bus;
7pub(crate) mod interfaces;
8mod object_address;
9mod object_id;
10
11pub(crate) use bus::*;
12pub(crate) use object_address::OwnedObjectAddress;
13pub(crate) use object_id::ObjectId;
14