2023-01-31 09:59:15 +08:00
|
|
|
package check
|
|
|
|
|
|
|
|
|
|
import (
|
2023-02-09 20:36:34 +08:00
|
|
|
sdkws "Open_IM/pkg/proto/sdkws"
|
2023-01-31 09:59:15 +08:00
|
|
|
"context"
|
|
|
|
|
"errors"
|
|
|
|
|
)
|
|
|
|
|
|
2023-02-09 20:36:34 +08:00
|
|
|
func GetUsersInfo(ctx context.Context, args ...interface{}) ([]*sdkws.UserInfo, error) {
|
2023-01-31 09:59:15 +08:00
|
|
|
return nil, errors.New("TODO:GetUserInfo")
|
|
|
|
|
}
|