2024-05-07 13:33:51 +00:00
|
|
|
package api
|
|
|
|
|
2024-06-03 08:15:23 +00:00
|
|
|
import "net/http"
|
2024-05-07 13:33:51 +00:00
|
|
|
|
|
|
|
func InitApi() {
|
2024-05-22 08:30:01 +00:00
|
|
|
BilibiliInit()
|
2024-06-03 08:15:23 +00:00
|
|
|
http.HandleFunc(Mindustry.Url, GetMindustryInfo)
|
|
|
|
http.HandleFunc(Memos.Url, GetMemosJson)
|
2024-05-07 13:33:51 +00:00
|
|
|
}
|