mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
12 lines
236 B
C#
12 lines
236 B
C#
|
|
using Autofac;
|
||
|
|
|
||
|
|
namespace PluralKit.API
|
||
|
|
{
|
||
|
|
public class APIModule: Module
|
||
|
|
{
|
||
|
|
protected override void Load(ContainerBuilder builder)
|
||
|
|
{
|
||
|
|
builder.RegisterType<TokenAuthService>().AsSelf();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|