// Package google_address provides Google Maps/Places integration. // OPT-IN: Only active when GOOGLE_MAPS_API_KEY is configured. // // Features: // - Address autocomplete (Google Places API) // - Geocoding (address → lat/lng) // - Reverse geocoding (lat/lng → address) // - Distance calculation between partners package google_address import ( "odoo-go/addons/google_address/models" "odoo-go/pkg/modules" ) func init() { modules.Register(&modules.Module{ Name: "google_address", Description: "Google Maps Address Integration", Version: "19.0.1.0.0", Category: "Integration", Depends: []string{"base"}, Application: false, Installable: true, Sequence: 100, Init: models.Init, }) }