Files
authorizer/server/cli/cli.go

15 lines
430 B
Go
Raw Normal View History

2022-05-30 11:54:16 +05:30
package cli
2022-05-27 23:20:38 +05:30
var (
// ARG_DB_URL is the cli arg variable for the database url
ARG_DB_URL *string
// ARG_DB_TYPE is the cli arg variable for the database type
ARG_DB_TYPE *string
// ARG_ENV_FILE is the cli arg variable for the env file
ARG_ENV_FILE *string
// ARG_LOG_LEVEL is the cli arg variable for the log level
ARG_LOG_LEVEL *string
2022-05-31 08:14:03 +05:30
// ARG_REDIS_URL is the cli arg variable for the redis url
ARG_REDIS_URL *string
2022-05-27 23:20:38 +05:30
)