From fe77f17ac9cb4cbb036abbb270e222a3a0498166 Mon Sep 17 00:00:00 2001 From: Daniel Legt Date: Tue, 18 Aug 2026 16:56:48 +0300 Subject: [PATCH] Refactor agent handlers to improve code clarity and maintainability. Update Serve method to use handleWeb and remove obsolete handleIndex function. --- .gitignore | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c54031b --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# Build output +/localagent.exe +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Tests and coverage +*.test +*.out +coverage.out +coverage.html + +# Go workspace +go.work +go.work.sum + +# Vendor (this repo uses modules) +/vendor/ + +# Environment +.env +.env.* + +# OS +.DS_Store +Thumbs.db +desktop.ini + +# Editors +.idea/ +.vscode/ +*.swp +*.swo +*~