# 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/jpyta4a
gin 框架是如何處理 panic 的?**
大家好,我是漁夫子。本文我們介紹下 recover 在 gin 框架中的應用。首先,在 golang 中,如果在子協程中遇到了 panic,那麼主協程也會被終止。如下:package mainimport ( "github.com/gin-gonic/gin")func main() { r := gin.Default()    // 在子協程中引起panic,主協程也會退出 go func( ⌘ Read more
=