# 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/b5qnada
CGO 讓 Go 與 C 手牽手,打破雙方 “壁壘”!**
導語 \\| Go 作爲當下最火的開發語言之一,它的優勢不必多說。Go 對於高併發的支持,使得它可以很方便的作爲獨立模塊嵌入業務系統。大量的 C/C++ 存量代碼出現,如何將 Go 和 C/C++ 進行打通尤爲重要。Golang 自帶的 CGO 可以支持與 C 語言接口的互通。本文首先介紹了 CGO 的常見用法,然後根據底層代碼分析其實現機制,最後在特定場景下進行 CGO 實踐。一、CGO 快速入門( ⌘ Read more