Error code standardization

This commit is contained in:
skiffer-git
2023-02-01 10:49:30 +08:00
parent 4067d7e4b9
commit e7eee16cf1
2 changed files with 22 additions and 12 deletions
+11
View File
@@ -0,0 +1,11 @@
package check
import (
server_api_params "Open_IM/pkg/proto/sdk_ws"
"context"
"errors"
)
func GetFriendsInfo(ctx context.Context, ownerUserID, friendUserID string) (*server_api_params.FriendInfo, error) {
return nil, errors.New("TODO:GetUserInfo")
}