fix: Missing service types causing injection failures
Some checks are pending
Build Dalamud / Build on Windows (push) Waiting to run
Build Dalamud / Check API Compatibility (push) Blocked by required conditions
Build Dalamud / Deploy dalamud-distrib staging (push) Blocked by required conditions

This commit is contained in:
Kaz Wolfe 2025-11-25 10:17:12 -08:00
parent 6a69a6e197
commit 8ab7b59ae4
No known key found for this signature in database
GPG key ID: 258813F53A16EBB4
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using Dalamud.Plugin.Services;
namespace Dalamud.Plugin.SelfTest; namespace Dalamud.Plugin.SelfTest;
/// <summary> /// <summary>
@ -44,7 +46,7 @@ namespace Dalamud.Plugin.SelfTest;
/// } /// }
/// </code> /// </code>
/// </example> /// </example>
public interface ISelfTestRegistry public interface ISelfTestRegistry : IDalamudService
{ {
/// <summary> /// <summary>
/// Registers the self-test steps for this plugin. /// Registers the self-test steps for this plugin.

View file

@ -9,7 +9,7 @@ namespace Dalamud.Plugin.Services;
/// <c>dalamud://plugin/{PLUGIN_INTERNAL_NAME}/...</c> namespace. /// <c>dalamud://plugin/{PLUGIN_INTERNAL_NAME}/...</c> namespace.
/// </summary> /// </summary>
[Experimental("DAL_RPC", Message = "This service will be finalized around 7.41 and may change before then.")] [Experimental("DAL_RPC", Message = "This service will be finalized around 7.41 and may change before then.")]
public interface IPluginLinkHandler public interface IPluginLinkHandler : IDalamudService
{ {
/// <summary> /// <summary>
/// A delegate containing the received URI. /// A delegate containing the received URI.