| 123456789101112131415 |
- package router
- import (
- "mtp20access/api/v1/quote"
- "github.com/gin-gonic/gin"
- )
- func InitQuotePrivateRouter(r *gin.RouterGroup) {
- mqR := r.Group("Quote").Use()
- {
- mqR.GET("WS", quote.Quote)
- mqR.POST("QuoteSubscribe", quote.QuoteSubscribe)
- }
- }
|