mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2026-02-25 20:08:14 +01:00
10 lines
283 B
C#
10 lines
283 B
C#
using Phantom.Common.Data.Agent.Instance;
|
|
|
|
namespace Phantom.Agent.Services.Instances.Launch;
|
|
|
|
sealed class InstanceValueResolver(IInstancePathResolver pathResolver) : IInstanceValueResolver {
|
|
public string? Path(IInstancePath value) {
|
|
return value.Resolve(pathResolver);
|
|
}
|
|
}
|