14 lines
273 B
C#
14 lines
273 B
C#
using abyssctl.App.Interfaces;
|
|
using CommandLine;
|
|
|
|
namespace abyssctl.App.Modules;
|
|
|
|
[Verb("ver", HelpText = "Get server version")]
|
|
public class VersionOptions: IOptions
|
|
{
|
|
public async Task<int> Run()
|
|
{
|
|
Console.WriteLine("Version");
|
|
return 0;
|
|
}
|
|
} |