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