diff options
| -rw-r--r-- | Cargo.lock | 7 | ||||
| -rw-r--r-- | Makefile | 18 |
2 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..d9da949 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "authzd" +version = "0.1.0" diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bfeeae3 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +.PHONY: help +help: + @echo "Available targets:" + @echo " run - Run the Server" + @echo " test - Run the tests" + +.PHONY: clean +clean: + @cargo clean + +.PHONY: run +run: + @cargo run + +.PHONY: test +test: + @cargo test + |
