Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Commit

Permalink
fix up info api
Browse files Browse the repository at this point in the history
  • Loading branch information
rootphantomer committed Sep 6, 2022
1 parent 8131d44 commit c6eee53
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/apis/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: ph4nt0mer
* @Date: 2022-09-01 15:36:10
* @LastEditors: rootphantomer
* @LastEditTime: 2022-09-06 16:41:22
* @LastEditTime: 2022-09-06 16:44:26
* @FilePath: /quake_go/src/apis/api.go
* @Description:
*
Expand Down Expand Up @@ -86,7 +86,8 @@ func AggregationServicePost(query string, start string, size string, token strin
func InfoGet(token string) {
// 个人信息接口
uri := "/user/info"
tools.ApisGet(setting.URL+uri, token)
info := tools.ApisGet(setting.URL+uri, token)
fmt.Println(info)
}
func FaviconPost(query string, start string, size string, token string) {
uri := "/query/similar_icon/aggregation"
Expand Down

0 comments on commit c6eee53

Please sign in to comment.