From b4d99b8d9069a80328deddf0119a924f4b4dd6bf Mon Sep 17 00:00:00 2001 From: Daniel Ponte Date: Mon, 21 Oct 2024 12:12:13 -0400 Subject: [PATCH] Remove driver --- config.sample.yaml | 1 - pkg/gordio/config/config.go | 1 - 2 files changed, 2 deletions(-) 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 {