mirror of
https://github.com/bitwarden/server
synced 2025-12-15 15:53:59 +00:00
Wire up crypto logic for sharing org key
This commit is contained in:
@@ -5,15 +5,6 @@
|
||||
/// </summary>
|
||||
public static class RustSdkServiceFactory
|
||||
{
|
||||
/// <summary>
|
||||
/// Creates a new instance of the Rust SDK service
|
||||
/// </summary>
|
||||
/// <returns>A new IRustSdkService instance</returns>
|
||||
public static RustSdkService Create()
|
||||
{
|
||||
return new RustSdkService();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Creates a singleton instance of the Rust SDK service (thread-safe)
|
||||
/// </summary>
|
||||
@@ -25,6 +16,6 @@ public static class RustSdkServiceFactory
|
||||
|
||||
private static class SingletonHolder
|
||||
{
|
||||
internal static readonly RustSdkService Instance = new RustSdkService();
|
||||
internal static readonly RustSdkService Instance = new();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user