From 89b5bee74035b0ba6d8603fbd9fc3da0ad31eaeb Mon Sep 17 00:00:00 2001 From: FroVolod Date: Sat, 4 Dec 2021 14:29:05 +0200 Subject: [PATCH] added scope generation --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 597c46b..b584239 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,3 +13,7 @@ impl ToCli for u128 { impl ToCli for u64 { type CliVariant = u64; } + +pub trait ToInteractiveClapContextScope { + type InteractiveClapContextScope; +}