mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
Read about the medusa system [here](https://nadekobot.readthedocs.io/en/latest/medusa/creating-a-medusa/)
14 lines
430 B
C#
14 lines
430 B
C#
using System.Collections.Immutable;
|
|
|
|
namespace Nadeko.Medusa;
|
|
|
|
public sealed record ResolvedMedusa(
|
|
WeakReference<MedusaAssemblyLoadContext> LoadContext,
|
|
IImmutableList<ModuleInfo> ModuleInfos,
|
|
IImmutableList<SnekInfo> SnekInfos,
|
|
IMedusaStrings Strings,
|
|
Dictionary<Type, TypeReader> TypeReaders,
|
|
IReadOnlyCollection<ICustomBehavior> Execs)
|
|
{
|
|
public IServiceProvider Services { get; set; } = null!;
|
|
} |