From b53f341ce280fdea61ca8594c4e2f95a9abc16dc Mon Sep 17 00:00:00 2001 From: kamal3887 Date: Sat, 30 Aug 2025 14:26:28 +0530 Subject: [PATCH] Struct yaml --- test/struct.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test/struct.yaml diff --git a/test/struct.yaml b/test/struct.yaml new file mode 100644 index 0000000..46f1f3f --- /dev/null +++ b/test/struct.yaml @@ -0,0 +1,26 @@ +project: + name: "Book Collection" + version: "1.0" + files: + - name: "book_collection.yaml" + type: "yaml" + path: "data/book_collection.yaml" + - name: "readme.md" + type: "markdown" + path: "docs/readme.md" + - name: "book_data_parser.py" + type: "python" + path: "scripts/book_data_parser.py" + directories: + - name: "data" + path: "data" + files: + - "book_collection.yaml" + - name: "docs" + path: "docs" + files: + - "readme.md" + - name: "scripts" + path: "scripts" + files: + - "book_data_parser.py"