// Package google_calendar provides Google Calendar sync integration. // OPT-IN: Only active when GOOGLE_CALENDAR_API_KEY is configured. // // Features: // - Sync events between Odoo and Google Calendar // - Create Google Calendar events from project tasks // - Import Google Calendar events as activities package google_calendar import ( "odoo-go/addons/google_calendar/models" "odoo-go/pkg/modules" ) func init() { modules.Register(&modules.Module{ Name: "google_calendar", Description: "Google Calendar Sync", Version: "19.0.1.0.0", Category: "Integration", Depends: []string{"base"}, Application: false, Installable: true, Sequence: 100, Init: models.Init, }) }