Echo framework integration for the Go Advanced Admin Panel.
This package provides integration with the Echo web framework for the Go Advanced Admin Panel, enabling you to use Echo as your web framework.
Add the module to your project by running:
go get github.com/go-advanced-admin/echo-integration
For detailed documentation on how to use the Echo integration, please visit the official documentation website.
import (
"github.com/go-advanced-admin/admin"
"github.com/go-advanced-admin/echo-integration"
"github.com/labstack/echo/v4"
)
func main() {
// Initialize Echo
e := echo.New()
// Initialize the web integrator
webIntegrator := adminecho.NewIntegrator(e.Group("/admin"))
// Use webIntegrator when initializing the admin panel
}
For more detailed examples and configuration options, please refer to the Echo Integration Guide.
Contributions are always welcome! Please refer to the Contributing Guidelines in the main repository.
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.