Toggle navigation
Toggle navigation
This project
Loading...
Sign in
방승일
/
mamuri-bot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
윤준석
2022-05-11 00:28:12 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
598223dddb78c51aecf119ab41fdf5449b103125
598223dd
1 parent
70cbee9d
ADD: api response model for processing naver cafe searching api response
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
joongna/model/api_response.go
joongna/model/api_response.go
0 → 100644
View file @
598223d
package
model
type
ApiResponse
struct
{
LastBuildDate
string
`json:"lastBuildDate"`
Total
uint
`json:"total"`
Start
uint
`json:"start"`
Display
uint
`json:"display"`
Items
[]
ApiResponseItem
`json:"items"`
}
type
ApiResponseItem
struct
{
Title
string
`json:"title"`
Link
string
`json:"link"`
Description
string
`json:"description"`
CafeName
string
`json:"cafename"`
CafeUrl
string
`json:"cafeurl"`
}
Please
register
or
login
to post a comment