conf

package
v0.0.0-...-d1760a8 Latest Latest
Warning

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

Go to latest
Published: Jan 17, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Env_name = map[int32]string{
		0: "dev",
		1: "test",
		2: "pro",
	}
	Env_value = map[string]int32{
		"dev":  0,
		"test": 1,
		"pro":  2,
	}
)

Enum value maps for Env.

View Source
var (
	OssUseMode_name = map[int32]string{
		0: "aliyun",
		1: "local",
	}
	OssUseMode_value = map[string]int32{
		"aliyun": 0,
		"local":  1,
	}
)

Enum value maps for OssUseMode.

View Source
var (
	GormLogLevel_name = map[int32]string{
		0: "warn",
		1: "info",
		2: "silent",
		3: "error",
	}
	GormLogLevel_value = map[string]int32{
		"warn":   0,
		"info":   1,
		"silent": 2,
		"error":  3,
	}
)

Enum value maps for GormLogLevel.

View Source
var File_internal_conf_conf_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Auth

type Auth struct {
	JwtKey  string               `protobuf:"bytes,1,opt,name=jwtKey,proto3" json:"jwtKey,omitempty"`
	Expires *durationpb.Duration `protobuf:"bytes,2,opt,name=expires,proto3" json:"expires,omitempty"`
	// contains filtered or unexported fields
}

func (*Auth) Descriptor deprecated

func (*Auth) Descriptor() ([]byte, []int)

Deprecated: Use Auth.ProtoReflect.Descriptor instead.

func (*Auth) GetExpires

func (x *Auth) GetExpires() *durationpb.Duration

func (*Auth) GetJwtKey

func (x *Auth) GetJwtKey() string

func (*Auth) ProtoMessage

func (*Auth) ProtoMessage()

func (*Auth) ProtoReflect

func (x *Auth) ProtoReflect() protoreflect.Message

func (*Auth) Reset

func (x *Auth) Reset()

func (*Auth) String

func (x *Auth) String() string

type Bootstrap

type Bootstrap struct {
	Server *Server `protobuf:"bytes,1,opt,name=server,proto3" json:"server,omitempty"`
	Data   *Data   `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	Auth   *Auth   `protobuf:"bytes,3,opt,name=auth,proto3" json:"auth,omitempty"`
	Casbin *Casbin `protobuf:"bytes,4,opt,name=casbin,proto3" json:"casbin,omitempty"`
	Oss    *Oss    `protobuf:"bytes,5,opt,name=oss,proto3" json:"oss,omitempty"`
	// contains filtered or unexported fields
}

func (*Bootstrap) Descriptor deprecated

func (*Bootstrap) Descriptor() ([]byte, []int)

Deprecated: Use Bootstrap.ProtoReflect.Descriptor instead.

func (*Bootstrap) GetAuth

func (x *Bootstrap) GetAuth() *Auth

func (*Bootstrap) GetCasbin

func (x *Bootstrap) GetCasbin() *Casbin

func (*Bootstrap) GetData

func (x *Bootstrap) GetData() *Data

func (*Bootstrap) GetOss

func (x *Bootstrap) GetOss() *Oss

func (*Bootstrap) GetServer

func (x *Bootstrap) GetServer() *Server

func (*Bootstrap) ProtoMessage

func (*Bootstrap) ProtoMessage()

func (*Bootstrap) ProtoReflect

func (x *Bootstrap) ProtoReflect() protoreflect.Message

func (*Bootstrap) Reset

func (x *Bootstrap) Reset()

func (*Bootstrap) String

func (x *Bootstrap) String() string

type Casbin

type Casbin struct {
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

func (*Casbin) Descriptor deprecated

func (*Casbin) Descriptor() ([]byte, []int)

Deprecated: Use Casbin.ProtoReflect.Descriptor instead.

func (*Casbin) GetPath

func (x *Casbin) GetPath() string

func (*Casbin) ProtoMessage

func (*Casbin) ProtoMessage()

func (*Casbin) ProtoReflect

func (x *Casbin) ProtoReflect() protoreflect.Message

func (*Casbin) Reset

func (x *Casbin) Reset()

func (*Casbin) String

func (x *Casbin) String() string

type Data

type Data struct {
	Database *Data_Database `protobuf:"bytes,1,opt,name=database,proto3" json:"database,omitempty"`
	Redis    *Data_Redis    `protobuf:"bytes,2,opt,name=redis,proto3" json:"redis,omitempty"`
	// contains filtered or unexported fields
}

func (*Data) Descriptor deprecated

func (*Data) Descriptor() ([]byte, []int)

Deprecated: Use Data.ProtoReflect.Descriptor instead.

func (*Data) GetDatabase

func (x *Data) GetDatabase() *Data_Database

func (*Data) GetRedis

func (x *Data) GetRedis() *Data_Redis

func (*Data) ProtoMessage

func (*Data) ProtoMessage()

func (*Data) ProtoReflect

func (x *Data) ProtoReflect() protoreflect.Message

func (*Data) Reset

func (x *Data) Reset()

func (*Data) String

func (x *Data) String() string

type Data_Database

type Data_Database struct {
	Driver       string       `protobuf:"bytes,1,opt,name=driver,proto3" json:"driver,omitempty"`
	Source       string       `protobuf:"bytes,2,opt,name=source,proto3" json:"source,omitempty"`
	MaxIdleConns int64        `protobuf:"varint,3,opt,name=maxIdleConns,proto3" json:"maxIdleConns,omitempty"`
	MaxOpenConns int64        `protobuf:"varint,4,opt,name=maxOpenConns,proto3" json:"maxOpenConns,omitempty"`
	LogLevel     GormLogLevel `protobuf:"varint,5,opt,name=logLevel,proto3,enum=kratos.api.GormLogLevel" json:"logLevel,omitempty"`
	// contains filtered or unexported fields
}

func (*Data_Database) Descriptor deprecated

func (*Data_Database) Descriptor() ([]byte, []int)

Deprecated: Use Data_Database.ProtoReflect.Descriptor instead.

func (*Data_Database) GetDriver

func (x *Data_Database) GetDriver() string

func (*Data_Database) GetLogLevel

func (x *Data_Database) GetLogLevel() GormLogLevel

func (*Data_Database) GetMaxIdleConns

func (x *Data_Database) GetMaxIdleConns() int64

func (*Data_Database) GetMaxOpenConns

func (x *Data_Database) GetMaxOpenConns() int64

func (*Data_Database) GetSource

func (x *Data_Database) GetSource() string

func (*Data_Database) ProtoMessage

func (*Data_Database) ProtoMessage()

func (*Data_Database) ProtoReflect

func (x *Data_Database) ProtoReflect() protoreflect.Message

func (*Data_Database) Reset

func (x *Data_Database) Reset()

func (*Data_Database) String

func (x *Data_Database) String() string

type Data_Redis

type Data_Redis struct {
	Network       string               `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"`
	Addr          string               `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	ReadTimeout   *durationpb.Duration `protobuf:"bytes,3,opt,name=read_timeout,json=readTimeout,proto3" json:"read_timeout,omitempty"`
	WriteTimeout  *durationpb.Duration `protobuf:"bytes,4,opt,name=write_timeout,json=writeTimeout,proto3" json:"write_timeout,omitempty"`
	Username      string               `protobuf:"bytes,5,opt,name=username,proto3" json:"username,omitempty"`
	Password      string               `protobuf:"bytes,6,opt,name=password,proto3" json:"password,omitempty"`
	Database      int32                `protobuf:"varint,7,opt,name=database,proto3" json:"database,omitempty"`
	EnableCluster bool                 `protobuf:"varint,8,opt,name=enable_cluster,json=enableCluster,proto3" json:"enable_cluster,omitempty"`
	// contains filtered or unexported fields
}

func (*Data_Redis) Descriptor deprecated

func (*Data_Redis) Descriptor() ([]byte, []int)

Deprecated: Use Data_Redis.ProtoReflect.Descriptor instead.

func (*Data_Redis) GetAddr

func (x *Data_Redis) GetAddr() string

func (*Data_Redis) GetDatabase

func (x *Data_Redis) GetDatabase() int32

func (*Data_Redis) GetEnableCluster

func (x *Data_Redis) GetEnableCluster() bool

func (*Data_Redis) GetNetwork

func (x *Data_Redis) GetNetwork() string

func (*Data_Redis) GetPassword

func (x *Data_Redis) GetPassword() string

func (*Data_Redis) GetReadTimeout

func (x *Data_Redis) GetReadTimeout() *durationpb.Duration

func (*Data_Redis) GetUsername

func (x *Data_Redis) GetUsername() string

func (*Data_Redis) GetWriteTimeout

func (x *Data_Redis) GetWriteTimeout() *durationpb.Duration

func (*Data_Redis) ProtoMessage

func (*Data_Redis) ProtoMessage()

func (*Data_Redis) ProtoReflect

func (x *Data_Redis) ProtoReflect() protoreflect.Message

func (*Data_Redis) Reset

func (x *Data_Redis) Reset()

func (*Data_Redis) String

func (x *Data_Redis) String() string

type Env

type Env int32
const (
	Env_dev  Env = 0 // 开发环境
	Env_test Env = 1 // 测试环境
	Env_pro  Env = 2 // 正式环境
)

func (Env) Descriptor

func (Env) Descriptor() protoreflect.EnumDescriptor

func (Env) Enum

func (x Env) Enum() *Env

func (Env) EnumDescriptor deprecated

func (Env) EnumDescriptor() ([]byte, []int)

Deprecated: Use Env.Descriptor instead.

func (Env) Number

func (x Env) Number() protoreflect.EnumNumber

func (Env) String

func (x Env) String() string

func (Env) Type

func (Env) Type() protoreflect.EnumType

type GormLogLevel

type GormLogLevel int32
const (
	GormLogLevel_warn   GormLogLevel = 0
	GormLogLevel_info   GormLogLevel = 1
	GormLogLevel_silent GormLogLevel = 2
	GormLogLevel_error  GormLogLevel = 3
)

func (GormLogLevel) Descriptor

func (GormLogLevel) Enum

func (x GormLogLevel) Enum() *GormLogLevel

func (GormLogLevel) EnumDescriptor deprecated

func (GormLogLevel) EnumDescriptor() ([]byte, []int)

Deprecated: Use GormLogLevel.Descriptor instead.

func (GormLogLevel) Number

func (GormLogLevel) String

func (x GormLogLevel) String() string

func (GormLogLevel) Type

type Oss

type Oss struct {
	Use    OssUseMode      `protobuf:"varint,1,opt,name=use,proto3,enum=kratos.api.OssUseMode" json:"use,omitempty"`
	Aliyun *OssConfig      `protobuf:"bytes,2,opt,name=aliyun,proto3" json:"aliyun,omitempty"`
	Local  *OssLocalConfig `protobuf:"bytes,3,opt,name=local,proto3" json:"local,omitempty"`
	// contains filtered or unexported fields
}

func (*Oss) Descriptor deprecated

func (*Oss) Descriptor() ([]byte, []int)

Deprecated: Use Oss.ProtoReflect.Descriptor instead.

func (*Oss) GetAliyun

func (x *Oss) GetAliyun() *OssConfig

func (*Oss) GetLocal

func (x *Oss) GetLocal() *OssLocalConfig

func (*Oss) GetUse

func (x *Oss) GetUse() OssUseMode

func (*Oss) ProtoMessage

func (*Oss) ProtoMessage()

func (*Oss) ProtoReflect

func (x *Oss) ProtoReflect() protoreflect.Message

func (*Oss) Reset

func (x *Oss) Reset()

func (*Oss) String

func (x *Oss) String() string

type OssConfig

type OssConfig struct {
	Endpoint     string `protobuf:"bytes,1,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	AccessKey    string `protobuf:"bytes,2,opt,name=accessKey,proto3" json:"accessKey,omitempty"`
	AccessSecret string `protobuf:"bytes,3,opt,name=accessSecret,proto3" json:"accessSecret,omitempty"`
	BucketName   string `protobuf:"bytes,4,opt,name=bucketName,proto3" json:"bucketName,omitempty"`
	BucketURL    string `protobuf:"bytes,5,opt,name=bucketURL,proto3" json:"bucketURL,omitempty"`
	ImgDomain    string `protobuf:"bytes,6,opt,name=imgDomain,proto3" json:"imgDomain,omitempty"`
	// contains filtered or unexported fields
}

func (*OssConfig) Descriptor deprecated

func (*OssConfig) Descriptor() ([]byte, []int)

Deprecated: Use OssConfig.ProtoReflect.Descriptor instead.

func (*OssConfig) GetAccessKey

func (x *OssConfig) GetAccessKey() string

func (*OssConfig) GetAccessSecret

func (x *OssConfig) GetAccessSecret() string

func (*OssConfig) GetBucketName

func (x *OssConfig) GetBucketName() string

func (*OssConfig) GetBucketURL

func (x *OssConfig) GetBucketURL() string

func (*OssConfig) GetEndpoint

func (x *OssConfig) GetEndpoint() string

func (*OssConfig) GetImgDomain

func (x *OssConfig) GetImgDomain() string

func (*OssConfig) ProtoMessage

func (*OssConfig) ProtoMessage()

func (*OssConfig) ProtoReflect

func (x *OssConfig) ProtoReflect() protoreflect.Message

func (*OssConfig) Reset

func (x *OssConfig) Reset()

func (*OssConfig) String

func (x *OssConfig) String() string

type OssLocalConfig

type OssLocalConfig struct {
	Dir string `protobuf:"bytes,1,opt,name=dir,proto3" json:"dir,omitempty"`
	// contains filtered or unexported fields
}

func (*OssLocalConfig) Descriptor deprecated

func (*OssLocalConfig) Descriptor() ([]byte, []int)

Deprecated: Use OssLocalConfig.ProtoReflect.Descriptor instead.

func (*OssLocalConfig) GetDir

func (x *OssLocalConfig) GetDir() string

func (*OssLocalConfig) ProtoMessage

func (*OssLocalConfig) ProtoMessage()

func (*OssLocalConfig) ProtoReflect

func (x *OssLocalConfig) ProtoReflect() protoreflect.Message

func (*OssLocalConfig) Reset

func (x *OssLocalConfig) Reset()

func (*OssLocalConfig) String

func (x *OssLocalConfig) String() string

type OssUseMode

type OssUseMode int32
const (
	OssUseMode_aliyun OssUseMode = 0
	OssUseMode_local  OssUseMode = 1
)

func (OssUseMode) Descriptor

func (OssUseMode) Descriptor() protoreflect.EnumDescriptor

func (OssUseMode) Enum

func (x OssUseMode) Enum() *OssUseMode

func (OssUseMode) EnumDescriptor deprecated

func (OssUseMode) EnumDescriptor() ([]byte, []int)

Deprecated: Use OssUseMode.Descriptor instead.

func (OssUseMode) Number

func (x OssUseMode) Number() protoreflect.EnumNumber

func (OssUseMode) String

func (x OssUseMode) String() string

func (OssUseMode) Type

type Server

type Server struct {
	Http *Server_HTTP `protobuf:"bytes,1,opt,name=http,proto3" json:"http,omitempty"`
	Grpc *Server_GRPC `protobuf:"bytes,2,opt,name=grpc,proto3" json:"grpc,omitempty"`
	Env  Env          `protobuf:"varint,3,opt,name=env,proto3,enum=kratos.api.Env" json:"env,omitempty"`
	// contains filtered or unexported fields
}

func (*Server) Descriptor deprecated

func (*Server) Descriptor() ([]byte, []int)

Deprecated: Use Server.ProtoReflect.Descriptor instead.

func (*Server) GetEnv

func (x *Server) GetEnv() Env

func (*Server) GetGrpc

func (x *Server) GetGrpc() *Server_GRPC

func (*Server) GetHttp

func (x *Server) GetHttp() *Server_HTTP

func (*Server) ProtoMessage

func (*Server) ProtoMessage()

func (*Server) ProtoReflect

func (x *Server) ProtoReflect() protoreflect.Message

func (*Server) Reset

func (x *Server) Reset()

func (*Server) String

func (x *Server) String() string

type Server_GRPC

type Server_GRPC struct {
	Network string               `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"`
	Addr    string               `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	Timeout *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// contains filtered or unexported fields
}

func (*Server_GRPC) Descriptor deprecated

func (*Server_GRPC) Descriptor() ([]byte, []int)

Deprecated: Use Server_GRPC.ProtoReflect.Descriptor instead.

func (*Server_GRPC) GetAddr

func (x *Server_GRPC) GetAddr() string

func (*Server_GRPC) GetNetwork

func (x *Server_GRPC) GetNetwork() string

func (*Server_GRPC) GetTimeout

func (x *Server_GRPC) GetTimeout() *durationpb.Duration

func (*Server_GRPC) ProtoMessage

func (*Server_GRPC) ProtoMessage()

func (*Server_GRPC) ProtoReflect

func (x *Server_GRPC) ProtoReflect() protoreflect.Message

func (*Server_GRPC) Reset

func (x *Server_GRPC) Reset()

func (*Server_GRPC) String

func (x *Server_GRPC) String() string

type Server_HTTP

type Server_HTTP struct {
	Network string               `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"`
	Addr    string               `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	Timeout *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// contains filtered or unexported fields
}

func (*Server_HTTP) Descriptor deprecated

func (*Server_HTTP) Descriptor() ([]byte, []int)

Deprecated: Use Server_HTTP.ProtoReflect.Descriptor instead.

func (*Server_HTTP) GetAddr

func (x *Server_HTTP) GetAddr() string

func (*Server_HTTP) GetNetwork

func (x *Server_HTTP) GetNetwork() string

func (*Server_HTTP) GetTimeout

func (x *Server_HTTP) GetTimeout() *durationpb.Duration

func (*Server_HTTP) ProtoMessage

func (*Server_HTTP) ProtoMessage()

func (*Server_HTTP) ProtoReflect

func (x *Server_HTTP) ProtoReflect() protoreflect.Message

func (*Server_HTTP) Reset

func (x *Server_HTTP) Reset()

func (*Server_HTTP) String

func (x *Server_HTTP) String() string

Jump to

Keyboard shortcuts

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