From ac5774a698027e22bbb06288bef469b5a88a2e0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabor=20K=C3=B6rber?= Date: Fri, 29 Dec 2023 11:53:34 +0100 Subject: [PATCH] refactor(Justfile): simplified `bin` and `run` into run --- Justfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Justfile b/Justfile index 28fb6c2..2022880 100644 --- a/Justfile +++ b/Justfile @@ -4,12 +4,8 @@ default: @echo "# Miniweb Project" @just --list -# Run Service -run: - @cargo run --bin miniweb - # Run Bins -bin args='': +run args='miniweb': @cargo run --bin {{args}} status: