WithCustomTemplate set custom template
()
| 153 | |
| 154 | // WithCustomTemplate set custom template |
| 155 | func WithCustomTemplate() Option { |
| 156 | return func(o *options) { |
| 157 | o.IsCustomTemplate = true |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | func parseOption(options []Option) options { |
| 162 | o := defaultOptions |
no outgoing calls
searching dependent graphs…