HttpEntry.go 300 B

123456789101112131415161718
  1. package http
  2. import (
  3. "chathub/chfoot/http/app"
  4. "chathub/chfoot/http/chat"
  5. "chathub/chfoot/http/test"
  6. "github.com/gin-gonic/gin"
  7. )
  8. func FootHttpEntry(eg *gin.Engine) {
  9. eg.GET("/test1", test.FootApiTest1)
  10. eg.GET("/chat_ask", chat.FootApiChatAsk)
  11. eg.GET("/app_stop", app.FootApiAppStop)
  12. }