# 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/jfqjg3a
時間旅行者的工具箱:Go 語言 time 包解讀**
\\*概述時間和日期處理在軟件開發中是一個常見但也常被低估的領域。Go 語言提供了強大的 time 包,用於處理時間、日期、時區等相關操作。本文將探討 Go 語言中的 time 包,詳細介紹其使用方法,包括時間的創建、格式化、解析、時區處理等。旨在幫助理解和充分掌握 Go 語言中時間和日期處理的技能。主要內容包括 1. 什麼是 time 包? 2. 時間的基本操作 3. 時間的格式 ⌘ Read more
*