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.

9 lines
243 B

  1. package request
  2. type InitDB struct {
  3. Host string `json:"host"`
  4. Port string `json:"port"`
  5. UserName string `json:"userName" binding:"required"`
  6. Password string `json:"password"`
  7. DBName string `json:"dbName" binding:"required"`
  8. }