configtemplate.go 254 B

123456789101112131415
  1. package configgen
  2. const configTemplate = `// TODO replace * to your real value
  3. {
  4. "WithCache": false,
  5. "Force": true,
  6. "Username": "***",
  7. "Password": "***",
  8. "Address": "**",
  9. "TableSchema":"*",
  10. "Tables": [
  11. "**"
  12. ]
  13. }
  14. `