(meta *model.Meta, path string)
| 165 | } |
| 166 | |
| 167 | func getHeader(meta *model.Meta, path string) string { |
| 168 | if meta != nil && common.MetaCoversPath(meta.Path, path, meta.HeaderSub) { |
| 169 | return meta.Header |
| 170 | } |
| 171 | return "" |
| 172 | } |
| 173 | |
| 174 | func isEncrypt(meta *model.Meta, path string) bool { |
| 175 | if common.IsStorageSignEnabled(path) { |
no test coverage detected