package api import ( "net/http" ) func InitApi() { BilibiliInit() http.HandleFunc("/api/mdt", GetInfo) http.HandleFunc("/api/memos", GetMemosJson) }