diff --git a/config.sample.yaml b/config.sample.yaml index c5d8392..9ee1eb2 100644 --- a/config.sample.yaml +++ b/config.sample.yaml @@ -1,5 +1,4 @@ db: - driver: pgx connect: 'postgres://postgres:password@localhost:5432/example' cors: allowedOrigins: diff --git a/pkg/gordio/config/config.go b/pkg/gordio/config/config.go index f5a9dd6..03a9988 100644 --- a/pkg/gordio/config/config.go +++ b/pkg/gordio/config/config.go @@ -34,7 +34,6 @@ type CORS struct { type DB struct { Connect string `yaml:"connect"` - Driver string `yaml:"driver"` } type Logger struct {