From 9d43315545f73a1e4f329948b9631ee029671425 Mon Sep 17 00:00:00 2001 From: cdle <798731886@qq.com> Date: Wed, 27 Oct 2021 20:46:27 +0800 Subject: [PATCH] update --- .gitignore | 5 +++-- core/http_api.go | 5 +++++ core/test.go | 6 ++++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 core/http_api.go diff --git a/.gitignore b/.gitignore index 2182745..c8671fe 100644 --- a/.gitignore +++ b/.gitignore @@ -13,5 +13,6 @@ dwz replies qinglongs sets.conf -_* -*.exe \ No newline at end of file +*.exe +yummy +_stc \ No newline at end of file diff --git a/core/http_api.go b/core/http_api.go new file mode 100644 index 0000000..a02427f --- /dev/null +++ b/core/http_api.go @@ -0,0 +1,5 @@ +package core + +func init() { + +} diff --git a/core/test.go b/core/test.go index 0d79a20..1dfbe8b 100644 --- a/core/test.go +++ b/core/test.go @@ -85,6 +85,12 @@ func initSys() { files, _ := ioutil.ReadDir(ExecPath + "/develop") for _, f := range files { if f.IsDir() && f.Name() != "replies" { + if f.Name() == "qinglong" { + continue + } + if strings.HasPrefix(f.Name(), "_") { + continue + } s.Reply("检查扩展"+f.Name()+"更新...", E) need, err := GitPull("/develop/" + f.Name()) if err != nil {