This commit is contained in:
MEHMETKECECI
2026-02-11 17:46:22 +03:00
commit eacfacb13b
266 changed files with 51337 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
// utils/logger.go
package utils
import "log"
func LogError(scope string, err error) {
log.Printf("[%s] %v", scope, err)
}