A lightweight Google-Calendar-style desktop app built with Go and Wails.
- Month, week, and day calendar views.
- Light, clean UI.
- Event creation with title, date/time range, location, description, and any color.
- In-memory Go backend with event CRUD methods exposed to the UI.
- Install Wails CLI (if needed):
go install github.com/wailsapp/wails/v2/cmd/wails@latest
- In the project folder, run:
go mod tidy wails dev
The Wails-bound Go backend exposes:
ListEvents() []EventCreateEvent(input EventInput) (Event, error)UpdateEvent(id string, input EventInput) (Event, error)DeleteEvent(id string) error