mirror of
https://github.com/bestnite/sub2clash.git
synced 2025-04-10 17:15:55 +08:00

fix: 修复当订阅链接有多个 clash 配置时丢失节点的问题 update: 增加检测更新 modify: 修改数据库路径 modify: 修改短链生成逻辑 modify: 统一输出信息
13 lines
259 B
Go
13 lines
259 B
Go
package model
|
|
|
|
type Tags []struct {
|
|
Name string `json:"name"`
|
|
ZipballUrl string `json:"zipball_url"`
|
|
TarballUrl string `json:"tarball_url"`
|
|
Commit struct {
|
|
Sha string `json:"sha"`
|
|
Url string `json:"url"`
|
|
}
|
|
NodeId string `json:"node_id"`
|
|
}
|