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