1
0
mirror of https://github.com/chylex/Query.git synced 2025-04-28 09:15:41 +02:00
Query/Query/IApp.cs

8 lines
150 B
C#

using System.Diagnostics.CodeAnalysis;
namespace Query;
interface IApp {
bool TryRun(string command, [NotNullWhen(true)] out string? output);
}