config

package
v0.0.0-...-a8cf2a2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 2, 2023 License: GPL-3.0 Imports: 2 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type App

type App struct {
	Name    string `env-required:"true" yaml:"name"    env:"APP_NAME"`
	Version string `env-required:"true" yaml:"version" env:"APP_VERSION"`
}

App -.

type Auth

type Auth struct {
	Login    string `mapstructure:"login"`
	Password string `mapstructure:"pass"`
}

type Config

type Config struct {
	App  `yaml:"app"`
	HTTP `yaml:"http"`
	Log  `yaml:"logger"`
	PG   `yaml:"postgres"`
	Auth `yaml:"auth"`
	Jwt  `yaml:"jwt"`
}

Config -.

func NewViperConfig

func NewViperConfig() (*Config, error)

type HTTP

type HTTP struct {
	Port string `env-required:"true" yaml:"port" env:"HTTP_PORT"`
}

HTTP -.

type Jwt

type Jwt struct {
	SecretKey       string `mapstructure:"secret_key"`
	AccessTokenTTL  int64  `mapstructure:"access_token_ttl"`
	RefreshTokenTTL int64  `mapstructure:"refresh_token_ttl"`
}

type Log

type Log struct {
	Level string `env-required:"true" yaml:"log_level" mapstructure:"log_level"  env:"LOG_LEVEL"`
}

Log -.

type PG

type PG struct {
	PoolMax int    `env-required:"true" yaml:"pool_max" env:"PG_POOL_MAX"`
	URL     string `env-required:"true" yaml:"url"      env:"PG_URL"`
}

PG -.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL