pub trait CheckpointServiceNotify {
// Required methods
fn notify_checkpoint_signature(
&self,
epoch_store: &AuthorityPerEpochStore,
info: &CheckpointSignatureMessage,
) -> SuiResult;
fn notify_checkpoint(&self) -> SuiResult;
}