# 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/k24gnna
快速掌握 Go 工作區模式**
大家好,我是煎魚。在 Go 項目的模塊管理中,先是 GOPATH,然後到廢棄。再到強推 Go modules,從被社區抗拒到 rsc 硬上弓。現在最新要了解的,就是工作區模式(workspace mode)。這是一個在 Go1.18 引入的重要特性。之前一直沒提過,今天補全這塊的知識點。背景--在 Go1.11 起有了 Go modules 後,看起來 Go 模塊管理逐步按序有了約束、規範了起來。 ⌘ Read more