UPDATE: Chatbot module
All checks were successful
Build and Release / release (push) Successful in 2m13s
All checks were successful
Build and Release / release (push) Successful in 2m13s
This commit is contained in:
16
internal/routes/chatbotRoute.go
Normal file
16
internal/routes/chatbotRoute.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package routes
|
||||
|
||||
import (
|
||||
"history-api/internal/controllers"
|
||||
"history-api/internal/middlewares"
|
||||
"history-api/internal/repositories"
|
||||
|
||||
"github.com/gofiber/fiber/v3"
|
||||
)
|
||||
|
||||
func ChatbotRoutes(app *fiber.App, controller *controllers.ChatbotController, userRepo repositories.UserRepository) {
|
||||
route := app.Group("/chatbot")
|
||||
|
||||
route.Use(middlewares.JwtAccess(userRepo))
|
||||
route.Post("/chat", controller.Chat)
|
||||
}
|
||||
Reference in New Issue
Block a user