# 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/lwlwkha
如何用 go 實現一個 ORM
本期作者洪勝傑B 端技術中心高級開發工程師爲了提高開發效率和質量,我們常常需要 ORM 來幫助我們快速實現持久層增刪改查 API,目前 go 語言實現的 ORM 有很多種,他們都有自己的優劣點,有的實現簡單,有的功能複雜,有的 API 十分優雅。在使用了多個類似的工具之後,總是會發現某些點無法滿足解決我們生產環境中碰到的實際問題,比如無法集成公司內部的監控,Trace 組件,沒有 database ⌘ Read more