# 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/isrj7kq
Go 語言中的嵌入【第一部分】:結構體嵌入結構體**
你好,我是小四,你情商高,也可以叫我四哥~Go 語言並不支持傳統意義上的繼承,相反,它提倡通過組合來擴展類型的功能。這並不是 Go 所特有的概念,繼承之上的組合是 OOP 的一個衆所周知的原則,在《設計模式》一書的第一章就有介紹。Embedding(嵌入) 是 Go 語言一個重要的特性,有了它使得組合更加方便、更有用。雖然 Go 力求簡單,但某種程度上嵌入增加了語言的複雜度,如果使用不當會導致 b ⌘ Read more