# 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/jqj44jq
好用的 map-struct 轉換庫 mergo
1\\. 前言---------開發時,經常會碰到要把 map 轉成 struct,或者把 struct 轉成 map,方便數據處理。這個時候我們可以用到 mergo 。它非常簡單、好用,輔助我們更高效的開發。2. 特性---------mergo 有很多特性:支持 struct 轉成 map map 轉成 struct 支持各種選項,比如覆蓋寫等 … …. 更多功能特性請查看 ⌘ Read more