# 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/a662kyq
學習 gorm:gorm 中的核心數據結構**
大家好,我是漁夫子。今天咱們一起來學習下 gorm 中的幾個核心數據結構。通過了解 gorm 底層的數據結構,能夠讓我們瞭解 gorm 底層的實現,以便更好的使用 gorm。在 gorm 中主要有 5 個核心結構:DB、Config、Statment、Clause 和 Schema。接下來我們就詳細的看下每種數據結構以及各結構之間的關係。一、DB----在使用 gorm 的時候,我們首先會使用 g ⌘ Read more