# Functions
ArticlesPage return JSON information by page number Request sample: GET /page/1?limit=6.
DeleteArticle delete an articles JSON.
DeleteOption will delete option by 'name' param Request sample: DELETE /option/:name.
GetArticle get an articles by 'id' param Request sample: GET /article/1.
GetOption return an option by 'name' param Request sample: GET /option/:name.
HomePage return home and index page Request sample: GET / => GET /page/1.
InsertArticle will insert an articles Request sample: POST /article?title=foo&status=1&content=bar.
InsertOption will insert an option Request sample: POST /option/:name?value=foo.
ListArticles return the number of all articles Request sample: GET /articles.
ListOptions return all options Request sample: GET /options.
UpdateArticle update an articles JSON.
UpdateOption will update option Request sample: PUT /option/:name?value=foo1.
# Constants
DefaultPageLimit is default limit number per page And other constant.