# 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/t4g6g3q
「Go 開源包」env:一個將系統環境變量解析到結構體的庫**
大家好,我是漁夫子。今天給大家推薦一個將系統的環境變量獲取並解析到結構體的包:env。 項目地址:https://github.com/caarlos0/envstar:3.7k    貢獻者:54   使用者:1.8k該包的實現是基於標準庫 os/env 包中的相關函數(比如 Getenv�)來獲取系統的環境變量的。獲取到環境變量值後,再通過結構體中的 tag,將值映射到對應的結構體字段上。使 ⌘ Read more