# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/kyix64a
如何使用 Golang 的 Gin 框架渲染 HTML 頁面**
使用 Golang 流行的 web 框架 Gin 渲染 HTML 模板頁面的簡單例子Gin 是 Golang 最流行的 web 框架之一。我之前已經寫過如何使用 Golang 基礎模板包渲染 HTML 頁面。使用 Gin 渲染 HTML 模板更加簡單。爲了使工作流更加順暢,嘗試新的想法並進行調試,我還決定使用 Codegangsta 的自動重載工具 Gin。安裝 Gin安裝 Gin HTTP ⌘ Read more