service: flags: add missing cert options

Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
This commit is contained in:
Adphi 2023-03-11 12:30:32 +01:00
parent 82d04d63b6
commit e295da1988
Signed by: adphi
GPG Key ID: 46BE4062DB2397FF
1 changed files with 3 additions and 3 deletions

View File

@ -41,9 +41,9 @@ func NewFlagSet() (*pflag.FlagSet, Option) {
o.address = optAddress
o.secure = !optInsecure
o.reflection = optReflection
// o.caCert = optCACert
// o.cert = optCert
// o.key = optKey
o.caCert = optCACert
o.cert = optCert
o.key = optKey
}
}