implement "cdn ls" via CommandLineParser

This commit is contained in:
Yaakov 2021-09-26 00:07:48 +10:00
parent 74c7070e38
commit a4f9f13780
7 changed files with 113 additions and 8 deletions

View file

@ -83,7 +83,9 @@ Commands:
public string Name { get; }
public string Description { get; }
public ValueTask<int> ExecuteAsync() => ValueTask.FromResult(0);
public void Initialize(ReadOnlySpan<string> args) { }
public ValueTask<int> ExecuteAsync(IServiceProvider serviceProvider) => ValueTask.FromResult(0);
}
}
}