mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
Fixed some aliases and reworked namespaces
This commit is contained in:
17
src/NadekoBot/_common/Medusa/Common/Models/ResolvedMedusa.cs
Normal file
17
src/NadekoBot/_common/Medusa/Common/Models/ResolvedMedusa.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Nadeko.Snake;
|
||||
using Ninject.Modules;
|
||||
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 required INinjectModule KernelModule { get; set; }
|
||||
}
|
Reference in New Issue
Block a user