Method
constructor
(
private logger: Logger,
private downloadProvider: DownloadProvider,
private socialSharing: SocialSharing
)
Source from the content-addressed store, hash-verified
| 12 | @Injectable() |
| 13 | export class LogsProvider { |
| 14 | constructor( |
| 15 | private logger: Logger, |
| 16 | private downloadProvider: DownloadProvider, |
| 17 | private socialSharing: SocialSharing |
| 18 | ) { |
| 19 | this.logger.debug('LogsProvider initialized'); |
| 20 | } |
| 21 | |
| 22 | public get(app, platform?) { |
| 23 | if (platform != 'desktop') this.share(app, platform); |
Callers
nothing calls this directly
Tested by
no test coverage detected