# 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/wffullq
一起用 Go 做一個小遊戲(下)**
打包資源----使用 file2byteslice 包我們可以將圖片和 config.json 文件打包進二進制程序中,之後編譯生成一個二進制程序。然後拷貝這一個文件即可,不用再拷貝圖片和其他配置文件了。golang 有很多第三方包可以將打包資源,原理其實很簡單——讀取資源文件的內容,然後生成一個 go 文件,在這個文件中創建一個變量保存這個文件的二進制內容。我們將使用 ebiten 作者編寫的 ⌘ Read more