# 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/bpyr4ua
Go 語言導出包解密:外部訪問你的類型和值**
一、概述Go 語言實現封裝和可見性控制的主要方式是通過標識符的首字母大小寫來決定其是否可被其他包訪問。標識符如果首字母大寫就可以被外部包訪問 (導出), 可以選擇性地控制包內代碼的對外可見性。本文介紹如何導出包中的標識符, 讓外部包可以訪問包內定義的類型、變量、常量、函數、導出類型注意事項。主要內容包括 導出標識符的規則 導出類型的注意事項 導出結構體字段的方法 導出函數的注意 ⌘ Read more