# 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/hluvfra
學會 Go 中的時間處理**
作爲程序員,我們經常需要對時間進行處理。在 Go 中,標準庫 time 提供了對應的能力。本文將介紹 time 庫中一些重要的函數和方法,希望能幫助到那些一遇到 Go 時間處理問題就需要百度的童鞋。應對時區問題------在編程中,我們經常會遭遇八小時時間差問題。這是由時區差異引起的,爲了能更好地解決它們,我們需要理解幾個時間定義標準。GMT(Greenwich Mean Time),格林威治平時 ⌘ Read more