# 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/tcijc3a
從零開始,手把手教你用 Go 語言實現日誌系統**
/ Go 語言實現日誌系統 (支持多種輸出方式) /隨着業務規模的擴大, 日誌系統的重要性日益凸顯。然而興起於編譯時的 Go 語言, 缺乏動態特性, 構建靈活的日誌系統似乎不那麼容易。本文將通過一個日誌系統的實現案例, 來剖析如何運用 Go 語言的接口、組合等機制, 實現一個功能完備、可定製的日誌系統。主要內容如下 1. 日誌系統概述 2. 日誌級別 3. 日誌輸出位置 ⌘ Read more