# 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/uzatfja
gorm 框架原理 - 源碼解析**
0 前言本篇將和大家探討 go 語言中最流行的 orm 框架 ——gorm 的底層實現原理.那麼步入正題,本篇分享內容的目錄大綱如下所示:1 入口gorm 框架是國內的大神 jinzhu 基於 go 語言開源實現的一款數據庫 orm 框架. 【gorm】一詞恢弘大氣,前綴 go 代表 go 語言, 後綴 orm 全稱 Object Relation Mapping,指的是使用對象映射的方式,讓使用 ⌘ Read more