| 21 | } |
| 22 | |
| 23 | type Object struct { |
| 24 | ID string |
| 25 | Path string |
| 26 | Name string |
| 27 | Size int64 |
| 28 | Modified time.Time |
| 29 | IsFolder bool |
| 30 | } |
| 31 | |
| 32 | func (o *Object) GetName() string { |
| 33 | return o.Name |
nothing calls this directly
no outgoing calls
no test coverage detected