mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-07 16:09:38 +02:00
* 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>
12 lines
204 B
Kotlin
12 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) {}
|
|
}
|