Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-13 21:05:15 +05:00
parent e5d588030b
commit ff60ddae9f
10 changed files with 38 additions and 1 deletions

View file

@ -16,7 +16,6 @@ dependencies {
implementation(projects.domain.wallets.models)
implementation(projects.domain.tokens.models)
implementation(projects.domain.notifications.models)
implementation(projects.domain.wallets)
implementation(projects.libs.crypto)
// region DI

View file

@ -0,0 +1 @@
/build

View file

@ -0,0 +1,4 @@
plugins {
alias(deps.plugins.kotlin.jvm)
id("configuration")
}

View file

@ -0,0 +1,5 @@
package com.tangem.domain.notifications.toggles
interface NotificationsFeatureToggles {
val isNotificationsEnabled: Boolean
}