com.avito.runner.service.worker.device.DeviceCoordinate.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
package com.avito.runner.service.worker.device
public sealed class DeviceCoordinate {
public abstract val serial: Serial
public data class Kubernetes(
override val serial: Serial.Remote,
val podName: String
) : DeviceCoordinate()
public data class Local(override val serial: Serial.Local) : DeviceCoordinate() {
public companion object
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy