14 lines
202 B
Go
Raw Normal View History

2025-03-23 10:39:44 +08:00
package test
import (
"fmt"
"os"
"github.com/infraboard/mcube/v2/ioc"
)
func SetUp() {
fmt.Println(os.Getenv("McenterConfigPath"))
ioc.DevelopmentSetupWithPath(os.Getenv("McenterConfigPath"))
}