1 //! This module is a simple GATT server that shares the ATT channel with the
2 //! existing C++ GATT client. See go/private-gatt-in-platform for the design.
3 
4 pub mod arbiter;
5 pub mod callbacks;
6 pub mod channel;
7 pub mod ffi;
8 pub mod ids;
9 pub mod mocks;
10 mod mtu;
11 pub mod opcode_types;
12 pub mod server;
13 
14 pub use self::callbacks::GattCallbacks;
15 
16 pub use ffi::GattServerCallbacks;
17