Refactor + Bugs fixes on Strings + Gestion de la génération des images

This commit is contained in:
2022-02-14 14:02:49 +01:00
parent 11a40305dd
commit 5dd2340a11
76 changed files with 1878 additions and 704 deletions

View File

@ -14,7 +14,7 @@ struct Strings: ParsableCommand {
abstract: "A utility for generate strings.",
version: "0.1.0",
// Pass an array to `subcommands` to set up a nested tree of subcommands.
// Pass an array to `subcommands` to set up a nested tree of subcommands.
// With language support for type-level introspection, this could be
// provided by automatically finding nested `ParsableCommand` types.
subcommands: [Twine.self, Stringium.self, Tags.self]
@ -26,3 +26,4 @@ struct Strings: ParsableCommand {
}
Strings.main()