chore: add security

This commit is contained in:
2026-03-11 21:07:11 +01:00
parent dcd3c95965
commit b86315b60b
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -4,11 +4,11 @@ on:
push:
branches: [main]
paths:
- "backend/**"
- "backend/**/**"
pull_request:
branches: [main]
paths:
- "backend/**"
- "backend/**/**"
jobs:
lint:
-1
View File
@@ -78,7 +78,6 @@ func NewGeoService(redisClient *redis.Client, ctx context.Context) *GeoService {
// GÉOCODAGE - API NOMINATIM
// ============================================
// GeocodeAddress convertit une adresse en coordonnées GPS
func (gs *GeoService) GeocodeAddress(address string) (*GeoLocation, error) {
// 1. Vérifier le cache Redis
location, err := gs.getFromCache(address)