# 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/amjx6za
Go 原生插件使用問題全解析**
導言本人在設計和落地基於 Go 原生插件機制的擴展開發產品時踩到了很多坑,由於這方面相關資料很少,因而藉此機會做一個非常粗淺的總結,希望能對大家有所幫助。本文只說問題和解決方案,不讀代碼。一些背景知識2.1 運行時通常而言,在計算機編程語言領域,“運行時”的概念和一些需要使用到 vm 的語言相關。程序的運行由兩個部分組成:目標代碼和 “虛擬機”。比如最爲典型的 JAVA,即 Java Class ⌘ Read more