using System.Runtime.CompilerServices; namespace StellaOps.Testing; /// /// Automatically ensures OpenSSL 1.1 shim is visible for Mongo2Go-based tests. /// internal static class OpenSslAutoInit { [ModuleInitializer] public static void Init() { OpenSslLegacyShim.EnsureOpenSsl11(); } }