10 lines
180 B
C#
10 lines
180 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Pal.Client.Commands;
|
|
|
|
public interface ISubCommand
|
|
{
|
|
IReadOnlyDictionary<string, Action<string>> GetHandlers();
|
|
}
|