From 76d6dea5479b8c6c0675da2761fcd92a87a3e5d9 Mon Sep 17 00:00:00 2001 From: prathik Date: Mon, 13 Oct 2025 20:38:14 +0200 Subject: [PATCH 1/2] feat: add wallet interface definition --- interfaces/wallet_interface.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 interfaces/wallet_interface.txt diff --git a/interfaces/wallet_interface.txt b/interfaces/wallet_interface.txt new file mode 100644 index 0000000..7b698af --- /dev/null +++ b/interfaces/wallet_interface.txt @@ -0,0 +1,5 @@ +Interface: WalletService +Methods: + - addMoney(amount) + - withdrawMoney(amount) + - checkBalance() From 03a71e90daf1d749efb65ba6f71cd808d5ebab37 Mon Sep 17 00:00:00 2001 From: prathik Date: Mon, 13 Oct 2025 20:58:45 +0200 Subject: [PATCH 2/2] feat(logging): add logging configuration and description --- logs/logging_config.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 logs/logging_config.txt diff --git a/logs/logging_config.txt b/logs/logging_config.txt new file mode 100644 index 0000000..6c7cd58 --- /dev/null +++ b/logs/logging_config.txt @@ -0,0 +1,5 @@ +Logging Configuration: + - Log all API requests and responses + - Log level: INFO + - Error logs stored in /logs/error.log + - Format: [timestamp] [level] [message]