mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-01 04:34:50 -04:00
12 lines
219 B
C#
12 lines
219 B
C#
using System;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Kyoo.Models
|
|
{
|
|
public class LazyDi<T> : Lazy<T>
|
|
{
|
|
public LazyDi(IServiceProvider provider)
|
|
: base(provider.GetRequiredService<T>)
|
|
{ }
|
|
}
|
|
} |