(eid int64)
| 14 | } |
| 15 | |
| 16 | func invalidateLibraryCache(eid int64) { |
| 17 | if eid <= 0 || libraryCacheInvalidator == nil { |
| 18 | return |
| 19 | } |
| 20 | libraryCacheInvalidator(eid) |
| 21 | } |
| 22 | |
| 23 | // GetLibrariesByEidCached returns all libraries for the eid, using a shared loader when available. |
| 24 | func GetLibrariesByEidCached(eid int64) ([]Library, error) { |
no outgoing calls
no test coverage detected