Error code standardization

This commit is contained in:
skiffer-git
2023-01-31 10:03:10 +08:00
parent 6bce40535e
commit 467d44adc6
3 changed files with 15 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
package check
import (
server_api_params "Open_IM/pkg/proto/sdk_ws"
"context"
"errors"
)
func GetUsersInfo(ctx context.Context, args ...interface{}) ([]*server_api_params.UserInfo, error) {
return nil, errors.New("TODO:GetUserInfo")
}