nidus-sync/sync/messages.go

15 lines
311 B
Go
Raw Normal View History

2026-02-17 07:05:31 +00:00
package sync
import (
"context"
"github.com/Gleipnir-Technology/nidus-sync/db/models"
)
type contentMessageList struct{}
func getMessageList(ctx context.Context, user *models.User) (string, interface{}, *errorWithStatus) {
content := contentMessageList{}
return "sync/message-list.html", content, nil
}