# 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/x6terxq
深入講解 Golang 調試利器 Delve
\\*一、前言     Devle 是一個非常棒的 golang 調試工具,支持多種調試方式,直接運行調試,或者 attach 到一個正在運行中的 golang 程序,進行調試。實現類似 Visual Studio 的斷點調試功能 實現在程序 Crash 的時候生成 Coredump 文件 實現  Web Server 調試。 1.1 Delve 常用命令二、安裝go get -u ⌘ Read more*