namespace StellaOps.Scanner.Storage.Oci; /// /// Service for pushing OCI artifacts to registries. /// Sprint: SPRINT_3850_0001_0001 /// public interface IOciPushService { /// /// Push an OCI artifact to a registry. /// Task PushAsync( OciArtifactPushRequest request, CancellationToken cancellationToken = default); /// /// Push a slice artifact to a registry. /// Task PushSliceAsync( SliceArtifactInput input, CancellationToken cancellationToken = default); }