From 33b0e4e30eef4604fdddae1a82f755a35682cc4b Mon Sep 17 00:00:00 2001 From: db123-test Date: Tue, 5 May 2026 11:46:58 +0330 Subject: [PATCH] refactor: move Go source files to src/ directory Organize project structure by relocating all Go files to a src/ directory, following standard Go project conventions and improving code organization. --- auth.go => src/auth.go | 0 auth_test.go => src/auth_test.go | 0 cleanup.go => src/cleanup.go | 0 config.go => src/config.go | 0 db.go => src/db.go | 0 main.go => src/main.go | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename auth.go => src/auth.go (100%) rename auth_test.go => src/auth_test.go (100%) rename cleanup.go => src/cleanup.go (100%) rename config.go => src/config.go (100%) rename db.go => src/db.go (100%) rename main.go => src/main.go (100%) diff --git a/auth.go b/src/auth.go similarity index 100% rename from auth.go rename to src/auth.go diff --git a/auth_test.go b/src/auth_test.go similarity index 100% rename from auth_test.go rename to src/auth_test.go diff --git a/cleanup.go b/src/cleanup.go similarity index 100% rename from cleanup.go rename to src/cleanup.go diff --git a/config.go b/src/config.go similarity index 100% rename from config.go rename to src/config.go diff --git a/db.go b/src/db.go similarity index 100% rename from db.go rename to src/db.go diff --git a/main.go b/src/main.go similarity index 100% rename from main.go rename to src/main.go