From fb5992da326da3828532723c0ec4c18b5f35e174 Mon Sep 17 00:00:00 2001 From: Moshe Immermam Date: Sun, 18 Aug 2024 12:17:12 +0300 Subject: [PATCH] chore: fix lint errors --- start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.go b/start.go index 6f8d8df8..f15612af 100644 --- a/start.go +++ b/start.go @@ -15,7 +15,7 @@ import ( ) func BindPFlags(flags *pflag.FlagSet) { - flags.MarkDeprecated("postgrest-anon-role", "Use postgrest-role instead") + _ = flags.MarkDeprecated("postgrest-anon-role", "Use postgrest-role instead") flags.StringVar(&DefaultConfig.ConnectionString, "db", "DB_URL", "Connection string for the postgres database") flags.StringVar(&DefaultConfig.Schema, "db-schema", "public", "Postgres schema") flags.StringVar(&DefaultConfig.Postgrest.URL, "postgrest-uri", "http://localhost:3000", "URL for the PostgREST instance to use. If localhost is supplied, a PostgREST instance will be started")