# 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/npr5ata
從 Go 的空 Struct{} 到內存對齊**
作者:Ciusyan https://juejin.cn/post/7244809769794207801空結構體與內存對齊爲什麼需要結構體?---------在 Go 語言中,使用整型、字符串、浮點型等基本的數據類型,就可以表示很多事物了。那麼爲什麼還需要結構體呢?使用結構體,可以更方便的抽象出一組具有相同行爲和屬性的事物。那結構體是什麼呢?結構體是 Go 語言中的一種自定義類型,它可 ⌘ Read more