package controller
import "narasi-ahli-be/app/module/chat/service"
type Controller struct {
Chat ChatController
}
func NewController(ChatService service.ChatService) *Controller {
return &Controller{
Chat: NewChatController(ChatService),