Files
payouts/internal/config/server.go
2026-03-05 11:21:18 +03:00

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
}