(fileName string)
| 126 | } |
| 127 | |
| 128 | func (o *StorageEntity) BuildFilePath(fileName string) (ret string) { |
| 129 | ret = filepath.Join(o.Dir, fileName) |
| 130 | return |
| 131 | } |
| 132 | |
| 133 | func (o *StorageEntity) buildFileName(name string) string { |
| 134 | return fmt.Sprintf("%s%v", name, o.FileExtension) |
no outgoing calls
no test coverage detected