d04e1fa368
* fix(deps): update dependency com.facebook:ktfmt to v0.44 * chore: reformat with ktfmt 0.44 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
11 lines
204 B
Kotlin
11 lines
204 B
Kotlin
@file:Suppress("Unused", "UNUSED_PARAMETER")
|
|
|
|
package io.sentry
|
|
|
|
import io.sentry.protocol.User
|
|
|
|
public class Scope {
|
|
public var user: User? = null
|
|
|
|
public fun setTag(tag: String, value: String) {}
|
|
}
|