aboutsummaryrefslogtreecommitdiff
path: root/sentry-stub/src/main/kotlin/io/sentry/Scope.kt
blob: 256496cdeebe4d186d45dd474f40f30ffca389d9 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright © 2014-2024 The Android Password Store Authors. All Rights Reserved.
 * SPDX-License-Identifier: GPL-3.0-only
 */

@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) {}
}