🔨 Make the 'Option' type private and add the 'IOption' type

This commit is contained in:
2024-11-23 17:53:11 +04:00
parent a468f663bf
commit 098c1d8cc4
4 changed files with 35 additions and 27 deletions

View File

@ -12,8 +12,8 @@ import (
func CLIConfigReader() (*config.CLIConfig, error) {
var (
returnNil = false
cliConfig = &config.CLIConfig{
returnNil = false
cliConfig = &config.CLIConfig{
Config: config.Config{
NoProxyCheck: utils.NewNoneOption[bool](),
},