com.avito.android.diff.report.OwnersDiffReportDestination.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-ownership Show documentation
Show all versions of code-ownership Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
The newest version!
package com.avito.android.diff.report
public sealed class OwnersDiffReportDestination {
public class File(public val parentDir: java.io.File) : OwnersDiffReportDestination()
public class Custom(public val reporter: OwnersDiffReporter) : OwnersDiffReportDestination()
}