项目文件夹

文件
2026-07-13 12:35:43 +08:00

14 行
155 B
Go

package management
import (
"os"
"testing"
"github.com/gin-gonic/gin"
)
func TestMain(m *testing.M) {
gin.SetMode(gin.TestMode)
os.Exit(m.Run())
}