Skip to content

Commit

Permalink
取消password默认值
Browse files Browse the repository at this point in the history
  • Loading branch information
p8s8liushim committed Mar 2, 2023
1 parent f2b1bf7 commit 280337d
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 280337d

Please sign in to comment.