mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
9 lines
343 B
C#
9 lines
343 B
C#
using Nadeko.Medusa;
|
|
|
|
internal class ContextAdapterFactory
|
|
{
|
|
public static AnyContext CreateNew(ICommandContext context, IMedusaStrings strings, IServiceProvider services)
|
|
=> context.Guild is null
|
|
? new DmContextAdapter(context, strings, services)
|
|
: new GuildContextAdapter(context, strings, services);
|
|
} |