Files
gluetun/internal/configuration/sources/files/system.go
2022-08-26 15:40:35 +00:00

11 lines
215 B
Go

package files
import (
"github.com/qdm12/gluetun/internal/configuration/settings"
)
func (s *Source) readSystem() (system settings.System, err error) {
// TODO timezone from /etc/localtime
return system, nil
}