Files

17 lines
314 B
Go
Raw Normal View History

2021-12-24 16:20:03 +08:00
package technology
2022-01-27 14:50:52 +08:00
import "time"
2021-12-24 16:20:03 +08:00
type Paper struct{}
type (
PaperInfo struct {
2022-01-27 14:50:52 +08:00
ID string `json:"id"`
Title string `json:"title"`
Ext string `json:"ext"`
Keywords []string `json:"keywords"`
Remark string `json:"remark"`
PublishAt time.Time `json:"publish_at"`
2021-12-24 16:20:03 +08:00
}
)