golang-im聊天
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

device_proxy.go 189 B

2 years ago
123456789101112
  1. package proxy
  2. import (
  3. "context"
  4. "gim/pkg/pb"
  5. )
  6. type deviceProxy interface {
  7. ListOnlineByUserId(ctx context.Context, userId int64) ([]*pb.Device, error)
  8. }
  9. var DeviceProxy deviceProxy