| 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 | |
| 6 | mod bus; |
| 7 | pub(crate) mod interfaces; |
| 8 | mod object_address; |
| 9 | mod object_id; |
| 10 | |
| 11 | pub(crate) use bus::*; |
| 12 | pub(crate) use object_address::OwnedObjectAddress; |
| 13 | pub(crate) use object_id::ObjectId; |
| 14 |
