(path string)
| 37 | } |
| 38 | |
| 39 | func GetMetaByPath(path string) (*model.Meta, error) { |
| 40 | return getMetaByPath(utils.FixAndCleanPath(path)) |
| 41 | } |
| 42 | func getMetaByPath(path string) (*model.Meta, error) { |
| 43 | meta, ok := metaCache.Get(path) |
| 44 | if ok { |
no test coverage detected