-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.go
41 lines (34 loc) · 878 Bytes
/
options.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package server
import (
"github.com/americanas-go/ignite"
)
// Options grpc server options.
type Options struct {
Port int
MaxConcurrentStreams int64
InitialWindowSize int32
InitialConnWindowSize int32
TLS TLSOptions `config:"tls"`
}
type TLSAutoOptions struct {
Host string
}
type TLSOptions struct {
Enabled bool
Type string
Auto TLSAutoOptions
File TLSFileOptions
}
type TLSFileOptions struct {
Cert string
Key string
CA string `config:"ca"`
}
// NewOptions returns options from config file or environment vars.
func NewOptions() (*Options, error) {
return ignite.NewOptionsWithPath[Options](root)
}
// NewOptionsWithPath unmarshals a given key path into options and returns it.
func NewOptionsWithPath(path string) (opts *Options, err error) {
return ignite.NewOptionsWithPath[Options](root, path)
}