package
Version:
v0.0.0-...-37bbf14
Opens a new window with list of versions in this module.
Published: Dec 8, 2019
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 6
Opens a new window with list of known importers.
Documentation
¶
type Article struct {
Id int64 `json:"id,omitempty"`
Title string `json:"title,omitempty"`
Username string `json:"username,omitempty"`
Tags []Tag `json:"tags,omitempty"`
Date string `json:"date,omitempty"`
Content string `json:"content,omitempty"`
Comments []Comment `json:"comments,omitempty"`
}
type Comment struct {
ArticleId int64 `json:"article_id,omitempty"`
}
type Tag struct {
Id int64 `json:"id,omitempty"`
Name string `json:"name,omitempty"`
}
type User struct {
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.