21 lines
329 B
Go
21 lines
329 B
Go
package config
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Tls struct {
|
|
Enabled bool
|
|
CertFile string
|
|
KeyFile string
|
|
}
|
|
|
|
// Server represents the server configiration
|
|
type Server struct {
|
|
Tls Tls
|
|
Port string
|
|
WriteTimeout time.Duration
|
|
ReadTimeout time.Duration
|
|
EnablePProfEndpoints bool
|
|
}
|