Skip to content

Commit

Permalink
[PostgreSQL] Include DisableSSL (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang8330 authored Jan 24, 2024
1 parent 435ffac commit 784a561
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions config/postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ import (
)

type PostgreSQL struct {
Host string `yaml:"host"`
Port string `yaml:"port"`
Username string `yaml:"userName"`
Password string `yaml:"password"`
Database string `yaml:"database"`
Tables []*PostgreSQLTable `yaml:"tables"`
Host string `yaml:"host"`
Port string `yaml:"port"`
Username string `yaml:"userName"`
Password string `yaml:"password"`
Database string `yaml:"database"`
Tables []*PostgreSQLTable `yaml:"tables"`
DisableSSL bool `yaml:"disableSSL"`
}

type PostgreSQLTable struct {
Expand Down

0 comments on commit 784a561

Please sign in to comment.