mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
11 lines
112 B
Go
11 lines
112 B
Go
|
package conf
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
fmt.Printf("Result: %v\n", Config)
|
||
|
}
|