mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 09:06:09 +03:00
13 lines
250 B
C#
13 lines
250 B
C#
using JetKarmaBot.Models;
|
|
using Perfusion;
|
|
|
|
namespace JetKarmaBot.Services
|
|
{
|
|
public class KarmaContextFactory
|
|
{
|
|
[Inject] Container C { get; set; }
|
|
|
|
public KarmaContext GetContext() => C.GetInstance<KarmaContext>();
|
|
}
|
|
}
|