Files
2022-01-27 14:50:52 +08:00

17 lines
314 B
Go

package technology
import "time"
type Paper struct{}
type (
PaperInfo struct {
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"`
}
)