From 0c48b824b0a4038aea001f81a08d6010e781f9e3 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 11 Oct 2021 18:28:07 +0800 Subject: [PATCH] change: rename files --- har2case/README.md | 9 +++++++++ har2case/{main.go => core.go} | 0 har2case/{main_test.go => core_test.go} | 0 3 files changed, 9 insertions(+) create mode 100644 har2case/README.md rename har2case/{main.go => core.go} (100%) rename har2case/{main_test.go => core_test.go} (100%) diff --git a/har2case/README.md b/har2case/README.md new file mode 100644 index 00000000..3cde2661 --- /dev/null +++ b/har2case/README.md @@ -0,0 +1,9 @@ +# har2case + +Convert HAR(HTTP Archive) to YAML/JSON testcases for HttpRunner and HttpBoomer. + +## Install + +## Quick Start + +## Examples diff --git a/har2case/main.go b/har2case/core.go similarity index 100% rename from har2case/main.go rename to har2case/core.go diff --git a/har2case/main_test.go b/har2case/core_test.go similarity index 100% rename from har2case/main_test.go rename to har2case/core_test.go