Add command to look up a VK callsign

This commit is contained in:
Yaakov 2021-09-30 18:12:02 +10:00
parent 4d35fee21e
commit 395af281d1
2 changed files with 86 additions and 0 deletions

View file

@ -31,6 +31,13 @@ namespace Shamir.Console
new StorageLsCommand(),
new StorageCopyCommand(),
new StorageGetUrlCommand()
)),
new DefaultCommandTree(
"vk",
"Australian Amateur Radio commands",
ImmutableArray<ICommandTree>.Empty,
ImmutableArray.Create<ICommand>(
new VKLookupCommand()
))
),
ImmutableArray<ICommand>.Empty