add linting configuration and update logging context key type
Some checks failed
🧪 ✨ Unit Tests Workflow / 🔍 🐹 Go Tests (push) Has been cancelled

This commit is contained in:
2025-06-17 22:03:11 -04:00
parent 68cf45fc49
commit 36518cb902
4 changed files with 60 additions and 2 deletions

View File

@@ -5,7 +5,10 @@ import (
log "github.com/sirupsen/logrus"
)
const contextKey = "logger"
type contextKeyType string
const contextKey contextKeyType = "logger
const contextKey contextKeyType = "logger"
type Interface interface {
Info(format string, args ...interface{})