# 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/5g4luhq
Go 語言基礎之結構體(夏日篇)**
前言--Hey,大家好呀,我是星期八,上文講述了引入了一些結構體的知識。但是我們知道 Go 是通過結構體模仿對象的,一起來看看吧。引言--在 Go 中,我們是沒有類這個概念的,但是我們有結構體呀~Go 中的結構體,就相當於其他語言的類,基本能實現和其他語言一摸一樣的操作。構造函數----構造函數,跟其他語言一樣了,官方理解就是在類實例化時執行的方法,通常用於賦值操作。但是在 Go 中,可能不是太一 ⌘ Read more