Files
chatlog/internal/wechatdb/repository/session.go
Shen Junzheng 80c7e67106 x
2025-03-24 22:42:31 +08:00

12 lines
252 B
Go

package repository
import (
"context"
"github.com/sjzar/chatlog/internal/model"
)
func (r *Repository) GetSessions(ctx context.Context, key string, limit, offset int) ([]*model.Session, error) {
return r.ds.GetSessions(ctx, key, limit, offset)
}