# 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/qjnifpa
Golang 技巧:如何爲函數參數添加默認值?**
你是否是那些在 Go 中缺少默認參數值而感到沮喪的衆多程序員之一?如果是的話,你絕對不是一個人! 如何爲函數參數添加默認值。你是否曾因爲 Go 語言沒有默認參數值而感到沮喪?好消息是,你並不孤單!這個令人討厭的限制會讓你的代碼更加繁瑣,難以閱讀。每次都需要寫額外的代碼來檢查參數是否提供,並在沒有提供時使用默認值。別擔心!有辦法繞過這個限制,在你的 Go 函數中添加默認值。當然,這可能沒有內置的方 ⌘ Read more