mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-09-13 06:07:30 -04:00
17 lines
335 B
C#
17 lines
335 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LibationCli;
|
|
|
|
internal static class CliCommandGroups
|
|
{
|
|
public static IReadOnlyList<CliCommandGroup> All { get; } =
|
|
[
|
|
new(
|
|
"abs",
|
|
"Audiobookshelf commands.",
|
|
[
|
|
new("upload", "upload", "Upload liberated audiobooks to Audiobookshelf.", typeof(AbsUploadOptions)),
|
|
]),
|
|
];
|
|
}
|