Coverage Summary for Class: ExportWorkerScope (com.vsevolodganin.clicktrack.di.component)
| Class |
Class, %
|
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| ExportWorkerScope |
0%
(0/1)
|
0%
(0/1)
|
|
0%
(0/1)
|
0%
(0/2)
|
package com.vsevolodganin.clicktrack.di.component
import com.vsevolodganin.clicktrack.export.ExportWorker
import dev.zacsweers.metro.GraphExtension
abstract class ExportWorkerScope private constructor()
@GraphExtension(ExportWorkerScope::class)
interface ExportWorkerComponent {
fun inject(exportWorker: ExportWorker)
@GraphExtension.Factory
fun interface Factory {
fun create(): ExportWorkerComponent
}
}