12 lines
161 B
Go
12 lines
161 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
// var configFile = flag.String("f", "etc/home-user-auth.yaml", "the config file")
|
|
|
|
func TestMain(t *testing.T) {
|
|
main()
|
|
}
|