This commit is contained in:
withchao
2023-01-13 18:20:48 +08:00
parent 9b070bd8df
commit 176c65ebaf
6 changed files with 152 additions and 104 deletions
+10
View File
@@ -0,0 +1,10 @@
package friend
import (
"context"
"errors"
)
func GetUserInfo(ctx context.Context, userID string) (interface{}, error) {
return nil, errors.New("TODO:GetUserInfo")
}