# 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/pwxh6la
如何讓 Gitlab 私有倉庫支持 Go Get
【導讀】本文介紹了配置 Gitlab 實現私有倉庫的實踐。通常公司都會有自己的 Git 倉庫,可能涉及到利用 go get 進行項目依賴的問題。我們以 Gitlab 作爲私有倉庫爲例,倉庫地址爲:gitlab.com。私有倉庫鑑權設置--------go get 默認採用的 https 下載項目依賴,而私有倉庫一般採用的 ssh key 的方式鑑權,所以直接使用 go get 會出現 https ⌘ Read more