AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
main_test.go
根目录
/
internal
/
tool
/
builtin
/
main_test.go
1
package builtin
2
3
import (
4
"os"
5
"testing"
6
)
7
8
func TestMain(m *testing.M) {
9
os.Exit(m.Run())
10
}
11
11 lines
GO