config

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Aug 15, 2020 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	// 服务器配置
	Server Server `toml:"server"`

	// 数据库配置
	DB DB `toml:"database"`

	// jwt配置
	JWT JWT `toml:"jwt"`
}

Config 配置

func MakeConfigFromFile

func MakeConfigFromFile(file string) (Config, error)

MakeConfigFromFile 新建DB配置

type DB

type DB struct {
	Scheme   string // 协议
	Host     string // 地址
	Port     int    // 端口
	User     string // 用户
	Password string // 密码
	Name     string // 数据库名
	SSLmode  bool   // ssl模式
}

DB 数据库配置

func (DB) String

func (db DB) String() string

String 字符串

type JWT

type JWT struct {
	Secret string
}

JWT jwt配置

type Server

type Server struct {
	Port int // 端口,如:8810
}

Server 服务器配置

Jump to

Keyboard shortcuts

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