Add Sentry

This commit is contained in:
Jakob Gillich 2020-07-22 19:50:17 +02:00
parent 3345e56b38
commit ff8f787b81
4 changed files with 26 additions and 6 deletions

View file

@ -61,7 +61,8 @@ case class AppConfig(
antiCheat: AntiCheatConfig,
network: NetworkConfig,
developer: DeveloperConfig,
kamon: KamonConfig
kamon: KamonConfig,
sentry: SentryConfig
)
case class LoginConfig(
@ -123,3 +124,8 @@ case class NetSimConfig(
case class KamonConfig(
enable: Boolean
)
case class SentryConfig(
enable: Boolean,
dsn: String
)