Files
git.stella-ops.org/src/__Libraries/StellaOps.Cryptography.Kms/GcpKmsFacade.Dispose.cs
2026-02-04 19:59:20 +02:00

15 lines
255 B
C#

using System;
namespace StellaOps.Cryptography.Kms;
internal sealed partial class GcpKmsFacade
{
public void Dispose()
{
if (_ownsClient && _client is IDisposable disposable)
{
disposable.Dispose();
}
}
}