summaryrefslogtreecommitdiff
path: root/internal/storage/postgres_provider.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2021-08-11 11:04:35 +1000
committerAmir Zarrinkafsh <nightah@me.com>2021-08-11 11:16:46 +1000
commitb4e570358e8958f65a10ad2e6a2102926795b6fc (patch)
treecf54359e5dc9beadb16e2d91e7da3e7d287b0dc9 /internal/storage/postgres_provider.go
parent9c024cfa20ea2da45d458c950f50dd2635df56a2 (diff)
fix: include major in go.mod module directive (#2278)
* build: include major in go.mod module directive * fix: xflags * revert: cobra changes * fix: mock doc
Diffstat (limited to 'internal/storage/postgres_provider.go')
-rw-r--r--internal/storage/postgres_provider.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/storage/postgres_provider.go b/internal/storage/postgres_provider.go
index ac59dcd3c..c2783d082 100644
--- a/internal/storage/postgres_provider.go
+++ b/internal/storage/postgres_provider.go
@@ -8,7 +8,7 @@ import (
_ "github.com/jackc/pgx/v4/stdlib" // Load the PostgreSQL Driver used in the connection string.
- "github.com/authelia/authelia/internal/configuration/schema"
+ "github.com/authelia/authelia/v4/internal/configuration/schema"
)
// PostgreSQLProvider is a PostgreSQL provider.