12 lines
127 B
Go
12 lines
127 B
Go
|
|
package test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"testing"
|
||
|
|
"videoplayer/proto"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestConf(t *testing.T) {
|
||
|
|
fmt.Println(proto.MYSQL_DSN)
|
||
|
|
}
|