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 }