Files
signoz/pkg/web/web.go
Pandey 8771919de6 feat(gen): add cobra command for generating openapi spec (#9803)
add cobra command for auto-generating openapi spec
2025-12-15 17:48:30 +05:30

17 lines
304 B
Go

package web
import (
"net/http"
"github.com/gorilla/mux"
)
// Web is the interface that wraps the methods of the web package.
type Web interface {
// AddToRouter adds the web routes to an existing router.
AddToRouter(router *mux.Router) error
// ServeHTTP serves the web routes.
http.Handler
}