You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
728 B
31 lines
728 B
package dsn_test |
|
|
|
import ( |
|
"log" |
|
|
|
"go-common/library/conf/dsn" |
|
xtime "go-common/library/time" |
|
) |
|
|
|
// Config struct |
|
type Config struct { |
|
Network string `dsn:"network" validate:"required"` |
|
Host string `dsn:"host" validate:"required"` |
|
Username string `dsn:"username" validate:"required"` |
|
Password string `dsn:"password" validate:"required"` |
|
Timeout xtime.Duration `dsn:"query.timeout,1s"` |
|
Offset int `dsn:"query.offset" validate:"gte=0"` |
|
} |
|
|
|
func ExampleParse() { |
|
cfg := &Config{} |
|
d, err := dsn.Parse("tcp://root:[email protected]:2233?timeout=10s") |
|
if err != nil { |
|
log.Fatal(err) |
|
} |
|
_, err = d.Bind(cfg) |
|
if err != nil { |
|
log.Fatal(err) |
|
} |
|
log.Printf("%v", cfg) |
|
}
|
|
|