ICode9

精准搜索请尝试: 精确搜索
  • Go代码模板--Option模式2022-08-15 15:31:50

    package main import ( "fmt" "log" ) type optsUser struct { Addr string ReadTimeout int UseSSL bool } type OptionFunc func(opts *optsUser) error func WithAddr(addr string) OptionFunc { return func(opts *optsUser) e

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有