# README
Go Advanced Admin - Echo Integration
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.
Installation
Add the module to your project by running:
go get github.com/go-advanced-admin/echo-integration
Documentation
For detailed documentation on how to use the Echo integration, please visit the official documentation website.
Quick Start
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.
Contributing
Contributions are always welcome! Please refer to the Contributing Guidelines in the main repository.
License
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
# Functions
NewIntegrator creates a new Integrator instance for the given Echo group.
# Structs
Integrator struct wraps an Echo group to handle routes and assets for the admin panel.