Back to Wails

Gin Routing Example

v3/examples/gin-routing/README.md

2.13.0673 B
Original Source

Gin Routing Example

This example demonstrates how to use the Gin web framework as a router with Wails.

Overview

This example shows how to:

  • Set up Gin as the asset handler for a Wails application
  • Create a middleware that routes requests between Wails and Gin
  • Define API endpoints with Gin
  • Communicate between the Gin-served frontend and Wails backend
  • Implement custom Gin middleware

Running the Example

bash
cd v3/examples/gin-routing
go mod tidy
go run .

Documentation

Please consult the Using Gin for Routing guide for a detailed explanation of the example.