# 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/oetbocq
Go 語言基礎之結構體(冬日篇)**
前言--Hey,大家好呀,我是碼農,星期八,這是最後一次了,同樣也是 Go 面向對象的最後一次了。堅持住,一起看看看吧。結構體繼承-----說起繼承,學過 Java,Python 的肯定都不陌生,但是 Go 中,可沒有這個東西吶。那咋辦呢???,還是得用結構體來實現。假裝我們都是男孩,喜歡車,那我們就拿車來舉例子吧。車結構體//車type Car struct { Brand string ⌘ Read more