use af_sui_pkg_sdk::sui_pkg_sdk;
use sui_framework_sdk::UID;
#[cfg(feature = "graphql")]
pub mod graphql;
#[cfg(feature = "ptb")]
pub mod update;
sui_pkg_sdk!(switchboard_wrapper {
module wrapper {
struct SwitchboardWrapper has key, store {
id: UID,
}
struct SwitchboardAggregatorId has copy, drop, store {}
}
});