From 0001f67f0d629159c6e2e33e77d7f95a8a036a6d Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 29 Nov 2020 23:24:46 +0800 Subject: [PATCH] feat: add justfile --- justfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..34f4f9a --- /dev/null +++ b/justfile @@ -0,0 +1,9 @@ +# help +aa: + @just --list + +# example log +log: + cargo run --example log + +