|
@@ -117,7 +117,15 @@ func Start() {
|
|
|
root := "./data/chatHistory/"
|
|
|
return c.Attachment(filepath.Join(root, filename), "")
|
|
|
})
|
|
|
+
|
|
|
+ app.Route("/").GET(func(c *ship.Context) error {
|
|
|
+
|
|
|
+ return c.JSON(http.StatusOK, map[string]interface{}{
|
|
|
+ "status": "ok",
|
|
|
+ "msg": "欢迎使用钉钉机器人",
|
|
|
+ })
|
|
|
|
|
|
+ })
|
|
|
port := ":" + public.Config.Port
|
|
|
srv := &http.Server{
|
|
|
Addr: port,
|