Skip to content

Commit

Permalink
Merge pull request #14 from lsm1998/my
Browse files Browse the repository at this point in the history
取消password默认值
  • Loading branch information
Mikaelemmmm authored Mar 2, 2023
2 parents f2b1bf7 + 280337d commit e0a2c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql2pb.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func main() {
host := flag.String("host", "localhost", "the database host")
port := flag.Int("port", 3306, "the database port")
user := flag.String("user", "root", "the database user")
password := flag.String("password", "root", "the database password")
password := flag.String("password", "", "the database password")
schema := flag.String("schema", "", "the database schema")
table := flag.String("table", "*", "the table schema,multiple tables ',' split. ")
serviceName := flag.String("service_name", *schema, "the protobuf service name , defaults to the database schema.")
Expand Down

0 comments on commit e0a2c31

Please sign in to comment.