13 lines
211 B
Go
13 lines
211 B
Go
package technology
|
|
|
|
type Paper struct{}
|
|
|
|
type (
|
|
PaperInfo struct {
|
|
ID string `json:"id"`
|
|
Title string `json:"title"`
|
|
Ext string `json:"ext"`
|
|
Keywords []string `json:"keywords"`
|
|
}
|
|
)
|