16 lines
347 B
Go
16 lines
347 B
Go
package api
|
|
|
|
import (
|
|
"SciencesServer/app/api/website/controller"
|
|
"SciencesServer/app/basic/api"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type Docking struct{}
|
|
|
|
// Launch 联系客服对接
|
|
func (*Docking) Launch(c *gin.Context) {
|
|
err := controller.NewDocking()(getSession(c), api.GetTenantID()(c).(uint64)).Form(c.ClientIP())
|
|
api.APIResponse(err)(c)
|
|
}
|