Goal of this PR should be to integrate a working CLI parser so that commands can be sent to the Printer class to print text, such as ptprnt -t=FooBar also, standard flags for setting the output verbosity and help should be implemented Reviewed-on: #4
This commit is contained in:
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@@ -9,7 +9,7 @@
|
|||||||
"type": "cppdbg",
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"program": "${workspaceFolder}/builddir/ptprnt",
|
"program": "${workspaceFolder}/builddir/ptprnt",
|
||||||
"args": [],
|
"args": ["-t Hello"],
|
||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"cwd": "${fileDirname}",
|
"cwd": "${fileDirname}",
|
||||||
"environment": [],
|
"environment": [],
|
||||||
|
14
meson.build
14
meson.build
@@ -8,6 +8,13 @@ usb_dep = dependency('libusb-1.0')
|
|||||||
log_dep = dependency('spdlog')
|
log_dep = dependency('spdlog')
|
||||||
pangocairo_dep = dependency('pangocairo')
|
pangocairo_dep = dependency('pangocairo')
|
||||||
|
|
||||||
|
# CLI11
|
||||||
|
cli11_proj = subproject('cli11')
|
||||||
|
cli11_dep = cli11_proj.get_variable('CLI11_dep')
|
||||||
|
if not cli11_dep.found()
|
||||||
|
error('CLI11 not found, can not proceed')
|
||||||
|
endif
|
||||||
|
|
||||||
incdir = include_directories('src')
|
incdir = include_directories('src')
|
||||||
|
|
||||||
ptprnt_hpps = [
|
ptprnt_hpps = [
|
||||||
@@ -38,7 +45,7 @@ ptprnt_srcs = [
|
|||||||
ptprnt_lib = library('ptprnt',
|
ptprnt_lib = library('ptprnt',
|
||||||
include_directories: incdir,
|
include_directories: incdir,
|
||||||
install: true,
|
install: true,
|
||||||
dependencies: [usb_dep, log_dep, pangocairo_dep],
|
dependencies: [usb_dep, log_dep, pangocairo_dep, cli11_dep],
|
||||||
sources: [ptprnt_hpps, ptprnt_srcs])
|
sources: [ptprnt_hpps, ptprnt_srcs])
|
||||||
|
|
||||||
ptprnt_dep = declare_dependency(include_directories: incdir,
|
ptprnt_dep = declare_dependency(include_directories: incdir,
|
||||||
@@ -48,13 +55,14 @@ ptprnt_exe = executable(
|
|||||||
'ptprnt',
|
'ptprnt',
|
||||||
'src/main.cpp',
|
'src/main.cpp',
|
||||||
install: true,
|
install: true,
|
||||||
dependencies : [usb_dep, log_dep, ptprnt_dep],
|
dependencies : [usb_dep, log_dep, cli11_dep, ptprnt_dep],
|
||||||
cpp_args : ['-DPROJ_VERSION="'+meson.project_version()+'"'],
|
cpp_args : ['-DPROJ_VERSION="'+meson.project_version()+'"'],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
### Unit tests
|
||||||
|
|
||||||
#cmake = import('cmake')
|
# GTest
|
||||||
gtest_proj = subproject('gtest')
|
gtest_proj = subproject('gtest')
|
||||||
gtest_dep = gtest_proj.get_variable('gtest_main_dep')
|
gtest_dep = gtest_proj.get_variable('gtest_main_dep')
|
||||||
if not gtest_dep.found()
|
if not gtest_dep.found()
|
||||||
|
@@ -72,13 +72,10 @@ const PrinterStatus P700Printer::getPrinterStatus() {
|
|||||||
int tx = 0;
|
int tx = 0;
|
||||||
int tries = 0;
|
int tries = 0;
|
||||||
std::vector<uint8_t> recvBuf(32);
|
std::vector<uint8_t> recvBuf(32);
|
||||||
do {
|
while (tries++ < MAX_TRIES_GET_STATUS) {
|
||||||
std::this_thread::sleep_for(100ms);
|
std::this_thread::sleep_for(100ms);
|
||||||
mUsbHndl->bulkTransfer(0x81, recvBuf, &tx, 0);
|
mUsbHndl->bulkTransfer(commands["printerinfo"][0], recvBuf, &tx, 0);
|
||||||
if (tries++ > 10) {
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
} while (tx == 0);
|
|
||||||
|
|
||||||
return PrinterStatus{.tapeWidthMm = recvBuf[10]};
|
return PrinterStatus{.tapeWidthMm = recvBuf[10]};
|
||||||
}
|
}
|
||||||
|
@@ -31,6 +31,8 @@
|
|||||||
|
|
||||||
namespace ptprnt::printer {
|
namespace ptprnt::printer {
|
||||||
|
|
||||||
|
constexpr uint8_t MAX_TRIES_GET_STATUS = 10;
|
||||||
|
|
||||||
class P700Printer : public ::ptprnt::IPrinterDriver {
|
class P700Printer : public ::ptprnt::IPrinterDriver {
|
||||||
public:
|
public:
|
||||||
P700Printer() = default;
|
P700Printer() = default;
|
||||||
@@ -61,7 +63,7 @@ class P700Printer : public ::ptprnt::IPrinterDriver {
|
|||||||
|
|
||||||
std::shared_ptr<libusbwrap::IUsbDevice> mUsbHndl{nullptr};
|
std::shared_ptr<libusbwrap::IUsbDevice> mUsbHndl{nullptr};
|
||||||
|
|
||||||
PrinterInfo mInfo{.driverName = "P700",
|
static constexpr PrinterInfo mInfo{.driverName = "P700",
|
||||||
.name = "Brother P-touch P700",
|
.name = "Brother P-touch P700",
|
||||||
.version = "v1.0",
|
.version = "v1.0",
|
||||||
.vid = 0x04f9,
|
.vid = 0x04f9,
|
||||||
@@ -75,7 +77,7 @@ class P700Printer : public ::ptprnt::IPrinterDriver {
|
|||||||
{"lf", {0x5a}},
|
{"lf", {0x5a}},
|
||||||
{"ff", {0x0c}},
|
{"ff", {0x0c}},
|
||||||
{"eject", {0x1a}},
|
{"eject", {0x1a}},
|
||||||
};
|
{"printerinfo", {0x81}}};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ptprnt::printer
|
} // namespace ptprnt::printer
|
@@ -19,30 +19,54 @@
|
|||||||
|
|
||||||
#include "PtouchPrint.hpp"
|
#include "PtouchPrint.hpp"
|
||||||
|
|
||||||
|
#include <CLI/App.hpp>
|
||||||
|
#include <spdlog/common.h>
|
||||||
#include <spdlog/spdlog.h>
|
#include <spdlog/spdlog.h>
|
||||||
|
|
||||||
|
#include <functional>
|
||||||
|
|
||||||
|
#include "CLI/Option.hpp"
|
||||||
#include "P700Printer.hpp"
|
#include "P700Printer.hpp"
|
||||||
#include "graphics/Bitmap.hpp"
|
#include "graphics/Bitmap.hpp"
|
||||||
#include "libusbwrap/UsbDeviceFactory.hpp"
|
#include "libusbwrap/UsbDeviceFactory.hpp"
|
||||||
|
|
||||||
PtouchPrint::PtouchPrint() {}
|
namespace ptprnt {
|
||||||
|
|
||||||
PtouchPrint::~PtouchPrint() {}
|
PtouchPrint::PtouchPrint(const char* versionString) : mVersionString{versionString} {}
|
||||||
|
|
||||||
void PtouchPrint::init() {
|
int PtouchPrint::init(int argc, char** argv) {
|
||||||
mUsbDeviceFactory.init();
|
setupCliParser();
|
||||||
|
|
||||||
|
try {
|
||||||
|
mApp.parse(argc, argv);
|
||||||
|
} catch (const CLI::ParseError& e) {
|
||||||
|
mApp.exit(e);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mVerboseFlag) {
|
||||||
|
setupLogger(spdlog::level::trace);
|
||||||
|
} else {
|
||||||
|
setupLogger(spdlog::level::critical);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!mUsbDeviceFactory.init()) {
|
||||||
|
spdlog::error("Could not initialize libusb");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
mCompatiblePrinters = {std::make_shared<ptprnt::printer::P700Printer>()};
|
mCompatiblePrinters = {std::make_shared<ptprnt::printer::P700Printer>()};
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PtouchPrint::run() {
|
int PtouchPrint::run() {
|
||||||
auto numFoundPrinters = getCompatiblePrinters();
|
auto numFoundPrinters = getCompatiblePrinters();
|
||||||
if (numFoundPrinters == 0) {
|
if (numFoundPrinters == 0) {
|
||||||
spdlog::error(
|
spdlog::error(
|
||||||
"No compatible printers found, please make sure if they are turned on and connected");
|
"No compatible printers found, please make sure if they are turned on and connected");
|
||||||
return;
|
return -1;
|
||||||
} else if (numFoundPrinters > 1) {
|
} else if (numFoundPrinters > 1) {
|
||||||
spdlog::warn("Found more than one compatible printer. Currently not supported.");
|
spdlog::warn("Found more than one compatible printer. Currently not supported.");
|
||||||
return;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto printer = mCompatiblePrinters[0];
|
auto printer = mCompatiblePrinters[0];
|
||||||
@@ -50,14 +74,20 @@ void PtouchPrint::run() {
|
|||||||
if (devices.size() != 1) {
|
if (devices.size() != 1) {
|
||||||
spdlog::warn(
|
spdlog::warn(
|
||||||
"Found more than one device of the same printer on bus. Currently not supported");
|
"Found more than one device of the same printer on bus. Currently not supported");
|
||||||
return;
|
return -1;
|
||||||
}
|
}
|
||||||
printer->attachUsbDevice(devices[0]);
|
printer->attachUsbDevice(devices[0]);
|
||||||
auto status = printer->getPrinterStatus();
|
auto status = printer->getPrinterStatus();
|
||||||
spdlog::info("Detected tape width is {}mm", status.tapeWidthMm);
|
spdlog::info("Detected tape width is {}mm", status.tapeWidthMm);
|
||||||
auto bm = ptprnt::graphics::Bitmap<ptprnt::graphics::ALPHA8>(512, 128);
|
auto bm = ptprnt::graphics::Bitmap<ptprnt::graphics::ALPHA8>(512, 128);
|
||||||
printer->printBitmap(bm);
|
//printer->printBitmap(bm);
|
||||||
//printer->printText("wurst", 1);
|
//printer->printText("wurst", 1);
|
||||||
|
|
||||||
|
for (auto& cmd : mCommands) {
|
||||||
|
std::cout << cmd.second << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int PtouchPrint::getCompatiblePrinters() {
|
unsigned int PtouchPrint::getCompatiblePrinters() {
|
||||||
@@ -81,3 +111,52 @@ unsigned int PtouchPrint::getCompatiblePrinters() {
|
|||||||
mCompatiblePrinters.clear();
|
mCompatiblePrinters.clear();
|
||||||
return mDetectedPrinters.size();
|
return mDetectedPrinters.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void PtouchPrint::setupLogger(spdlog::level::level_enum lvl) {
|
||||||
|
spdlog::set_level(lvl);
|
||||||
|
spdlog::debug("Starting ptprnt {}", mVersionString);
|
||||||
|
}
|
||||||
|
|
||||||
|
void PtouchPrint::setupCliParser() {
|
||||||
|
auto printVersion = [this](std::size_t) {
|
||||||
|
std::cout << "ptprnt version: " << mVersionString << std::endl;
|
||||||
|
};
|
||||||
|
|
||||||
|
// General options
|
||||||
|
mApp.add_flag("-v,--verbose", mVerboseFlag, "Enable verbose output");
|
||||||
|
mApp.add_flag("-V,--version", printVersion, "Prints the ptprnt's version");
|
||||||
|
|
||||||
|
// Text printing options
|
||||||
|
mApp.add_option("-t,--text",
|
||||||
|
"Text to print (can be used multple times, use formatting options before to "
|
||||||
|
"influence text layout)")
|
||||||
|
->group("Printing")
|
||||||
|
->multi_option_policy(CLI::MultiOptionPolicy::TakeAll)
|
||||||
|
->trigger_on_parse()
|
||||||
|
->each([this](std::string text) { mCommands.emplace_back(CliCmdType::Text, text); });
|
||||||
|
mApp.add_option("-f,--font", "Font used for the following text occurences")
|
||||||
|
->group("Text printing ")
|
||||||
|
->multi_option_policy(CLI::MultiOptionPolicy::TakeAll)
|
||||||
|
->trigger_on_parse()
|
||||||
|
->each([this](std::string font) { mCommands.emplace_back(CliCmdType::Font, font); });
|
||||||
|
mApp.add_option("-s,--fontsize", "Font size of the following text occurences")
|
||||||
|
->group("Text printing ")
|
||||||
|
->multi_option_policy(CLI::MultiOptionPolicy::TakeAll)
|
||||||
|
->trigger_on_parse()
|
||||||
|
->each([this](std::string size) { mCommands.emplace_back(CliCmdType::FontSize, size); });
|
||||||
|
mApp.add_option("--valign", "Vertical alignment of the following text occurences")
|
||||||
|
->group("Text printing ")
|
||||||
|
->multi_option_policy(CLI::MultiOptionPolicy::TakeAll)
|
||||||
|
->trigger_on_parse()
|
||||||
|
->each([this](std::string valign) { mCommands.emplace_back(CliCmdType::VAlign, valign); });
|
||||||
|
mApp.add_option("--halign", "Vertical alignment of the following text occurences")
|
||||||
|
->group("Text printing ")
|
||||||
|
->multi_option_policy(CLI::MultiOptionPolicy::TakeAll)
|
||||||
|
->trigger_on_parse()
|
||||||
|
->each([this](std::string halign) { mCommands.emplace_back(CliCmdType::HAlign, halign); });
|
||||||
|
|
||||||
|
// Image options
|
||||||
|
mApp.add_option("-i,--image", "Image to print. Excludes all text printing ")
|
||||||
|
->group("Image printing");
|
||||||
|
}
|
||||||
|
} // namespace ptprnt
|
@@ -19,23 +19,47 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <CLI/CLI.hpp>
|
||||||
|
#include <spdlog/common.h>
|
||||||
|
#include <spdlog/spdlog.h>
|
||||||
|
|
||||||
|
#include "constants.hpp"
|
||||||
#include "interface/IPrinterDriver.hpp"
|
#include "interface/IPrinterDriver.hpp"
|
||||||
#include "libusbwrap/UsbDeviceFactory.hpp"
|
#include "libusbwrap/UsbDeviceFactory.hpp"
|
||||||
|
|
||||||
|
namespace ptprnt {
|
||||||
|
enum class CliCmdType { None = 0, Text = 1, FontSize = 2, Font = 3, VAlign = 4, HAlign = 5 };
|
||||||
|
using CliCmd = std::pair<CliCmdType, std::string>;
|
||||||
|
|
||||||
class PtouchPrint {
|
class PtouchPrint {
|
||||||
public:
|
public:
|
||||||
PtouchPrint();
|
PtouchPrint(const char* versionString);
|
||||||
~PtouchPrint();
|
~PtouchPrint() = default;
|
||||||
|
|
||||||
void init();
|
// This is basically a singelton application class, no need to copy or move
|
||||||
void run();
|
PtouchPrint(const PtouchPrint&) = delete;
|
||||||
|
PtouchPrint& operator=(const PtouchPrint&) = delete;
|
||||||
|
PtouchPrint(PtouchPrint&&) = delete;
|
||||||
|
PtouchPrint& operator=(PtouchPrint&&) = delete;
|
||||||
|
|
||||||
|
int init(int argc, char** argv);
|
||||||
|
int run();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// methods
|
// methods
|
||||||
|
void setupLogger(spdlog::level::level_enum lvl);
|
||||||
|
void setupCliParser();
|
||||||
unsigned int getCompatiblePrinters();
|
unsigned int getCompatiblePrinters();
|
||||||
|
|
||||||
// member variables
|
// member variables
|
||||||
libusbwrap::UsbDeviceFactory mUsbDeviceFactory;
|
CLI::App mApp{ptprnt::APP_DESC};
|
||||||
std::vector<std::shared_ptr<ptprnt::IPrinterDriver>> mCompatiblePrinters;
|
libusbwrap::UsbDeviceFactory mUsbDeviceFactory{};
|
||||||
std::vector<std::shared_ptr<ptprnt::IPrinterDriver>> mDetectedPrinters;
|
std::vector<std::shared_ptr<ptprnt::IPrinterDriver>> mCompatiblePrinters{};
|
||||||
|
std::vector<std::shared_ptr<ptprnt::IPrinterDriver>> mDetectedPrinters{};
|
||||||
|
std::vector<CliCmd> mCommands{};
|
||||||
|
std::string mVersionString = "";
|
||||||
|
|
||||||
|
// CLI flags
|
||||||
|
bool mVerboseFlag = false;
|
||||||
};
|
};
|
||||||
|
} // namespace ptprnt
|
26
src/constants.hpp
Normal file
26
src/constants.hpp
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
/*
|
||||||
|
ptrnt - print labels on linux
|
||||||
|
Copyright (C) 2023 Moritz Martinius
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
namespace ptprnt {
|
||||||
|
constexpr const char* const APP_NAME = "ptprnt";
|
||||||
|
constexpr const char* const APP_DESC =
|
||||||
|
"ptprnt - a userspace driver for Brother P-touch label printer";
|
||||||
|
} // namespace ptprnt
|
@@ -29,10 +29,11 @@
|
|||||||
#include "libusbwrap/interface/IUsbDevice.hpp"
|
#include "libusbwrap/interface/IUsbDevice.hpp"
|
||||||
|
|
||||||
namespace libusbwrap {
|
namespace libusbwrap {
|
||||||
UsbDeviceFactory::UsbDeviceFactory() {}
|
|
||||||
|
|
||||||
UsbDeviceFactory::~UsbDeviceFactory() {
|
UsbDeviceFactory::~UsbDeviceFactory() {
|
||||||
|
if (mDeviceListInitialized) {
|
||||||
libusb_free_device_list(mLibusbDeviceList, 1);
|
libusb_free_device_list(mLibusbDeviceList, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::shared_ptr<IUsbDevice>> UsbDeviceFactory::findAllDevices() {
|
std::vector<std::shared_ptr<IUsbDevice>> UsbDeviceFactory::findAllDevices() {
|
||||||
@@ -52,7 +53,7 @@ int UsbDeviceFactory::refreshDeviceList() {
|
|||||||
} else if (ret == 0) {
|
} else if (ret == 0) {
|
||||||
spdlog::warn("No USB devices found");
|
spdlog::warn("No USB devices found");
|
||||||
}
|
}
|
||||||
|
mDeviceListInitialized = true;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -24,12 +24,14 @@
|
|||||||
namespace libusbwrap {
|
namespace libusbwrap {
|
||||||
class UsbDeviceFactory : public IUsbDeviceFactory {
|
class UsbDeviceFactory : public IUsbDeviceFactory {
|
||||||
public:
|
public:
|
||||||
UsbDeviceFactory();
|
UsbDeviceFactory() = default;
|
||||||
~UsbDeviceFactory();
|
virtual ~UsbDeviceFactory();
|
||||||
|
|
||||||
// delete copy ctor and assignment
|
// delete copy ctor and assignment
|
||||||
UsbDeviceFactory(const UsbDeviceFactory&) = delete;
|
UsbDeviceFactory(const UsbDeviceFactory&) = delete;
|
||||||
UsbDeviceFactory& operator=(UsbDeviceFactory&) = delete;
|
UsbDeviceFactory& operator=(UsbDeviceFactory&) = delete;
|
||||||
|
UsbDeviceFactory(UsbDeviceFactory&&) = delete;
|
||||||
|
UsbDeviceFactory& operator=(UsbDeviceFactory&&) = delete;
|
||||||
|
|
||||||
bool init();
|
bool init();
|
||||||
/**
|
/**
|
||||||
@@ -56,6 +58,7 @@ class UsbDeviceFactory : public IUsbDeviceFactory {
|
|||||||
uint16_t pid);
|
uint16_t pid);
|
||||||
// members
|
// members
|
||||||
libusb_context* mLibusbCtx{nullptr};
|
libusb_context* mLibusbCtx{nullptr};
|
||||||
libusb_device** mLibusbDeviceList;
|
libusb_device** mLibusbDeviceList{};
|
||||||
|
bool mDeviceListInitialized = false;
|
||||||
};
|
};
|
||||||
} // namespace libusbwrap
|
} // namespace libusbwrap
|
19
src/main.cpp
19
src/main.cpp
@@ -17,21 +17,16 @@
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <spdlog/common.h>
|
||||||
#include <spdlog/spdlog.h>
|
#include <spdlog/spdlog.h>
|
||||||
|
|
||||||
#include "PtouchPrint.hpp"
|
#include "PtouchPrint.hpp"
|
||||||
|
|
||||||
void setupLogger() {
|
|
||||||
spdlog::set_level(spdlog::level::debug);
|
|
||||||
spdlog::info("Starting ptprnt {}", PROJ_VERSION);
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, char** argv) {
|
int main(int argc, char** argv) {
|
||||||
setupLogger();
|
ptprnt::PtouchPrint ptouchprnt(PROJ_VERSION);
|
||||||
|
int ret = ptouchprnt.init(argc, argv);
|
||||||
PtouchPrint ptouchprnt;
|
if (ret != 0) {
|
||||||
ptouchprnt.init();
|
return ret;
|
||||||
ptouchprnt.run();
|
}
|
||||||
|
return ptouchprnt.run();
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
9
subprojects/cli11.wrap
Normal file
9
subprojects/cli11.wrap
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
[wrap-file]
|
||||||
|
directory = CLI11-2.3.2
|
||||||
|
source_url = https://github.com/CLIUtils/CLI11/archive/refs/tags/v2.3.2.tar.gz
|
||||||
|
source_filename = CLI11-2.3.2.tar.gz
|
||||||
|
source_hash = aac0ab42108131ac5d3344a9db0fdf25c4db652296641955720a4fbe52334e22
|
||||||
|
wrapdb_version = 2.3.2-1
|
||||||
|
|
||||||
|
[provide]
|
||||||
|
cli11 = CLI11_dep
|
Reference in New Issue
Block a user