Skip to content

Commit d8bfe90

Browse files
committed
remove short form args for tiptap related config
Clap was complaining and just having a -t seems not super expressive
1 parent 82fe4be commit d8bfe90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

service/src/config.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ pub struct Config {
5555
database_uri: Option<String>,
5656

5757
/// The URL for the TipTap Cloud API provider
58-
#[arg(short, long, env)]
58+
#[arg(long, env)]
5959
tip_tap_url: Option<String>,
6060

6161
/// The authorization key to use when calling the TipTap Cloud API.
62-
#[arg(short, long, env)]
62+
#[arg(long, env)]
6363
tip_tap_auth_key: Option<String>,
6464

6565
/// The host interface to listen for incoming connections

0 commit comments

Comments
 (0)