# 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/ygtxeuq
Go Web 框架 echo 路由分析**
【導讀】本文介紹了 echo 框架的路由。在分析之前,帶着問題去查找答案。官方 http 包已經提供了 server 的功能,爲什麼要用框架? 路由註冊----簡單的程序我們來看看 echo 的三種匹配模式和優先級順序匹配,優先級從下到下:Static (固定路徑) 類似於/users/new Param (參數路徑) 類似於/users/:id Match any (匹配所有) ⌘ Read more