mirror of
https://github.com/bitwarden/android.git
synced 2025-01-09 17:57:34 +03:00
13 lines
241 B
C#
13 lines
241 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Bit.Core.Utilities
|
|||
|
{
|
|||
|
public class LazyResolve<T> : Lazy<T>
|
|||
|
{
|
|||
|
public LazyResolve(string containerKey)
|
|||
|
: base(() => ServiceContainer.Resolve<T>(containerKey))
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|