# 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/7e4cl7a
go 語言使用 xorm 讀取 mysql 小結**
一、介紹----xorm 是 go 語言的常用 orm 之一,用來操作數據庫。主要特性特性:支持根據數據庫自動生成 xorm 的結構體 支持 Struct 和數據庫表之間的靈活映射, 並支持自動同步 支持事務 支持使用 Id, In, Where, Limit, Join, Having, Table, Sql, Cols 等函數和結構體等方式作爲條件 支持查詢結果集導出 ⌘ Read more