Updated on 2026-08-14
This commit is contained in:
parent
e5d588030b
commit
ff60ddae9f
10 changed files with 38 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
1
domain/notifications/toggles/.gitignore
vendored
Normal file
1
domain/notifications/toggles/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
4
domain/notifications/toggles/build.gradle.kts
Normal file
4
domain/notifications/toggles/build.gradle.kts
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
plugins {
|
||||
alias(deps.plugins.kotlin.jvm)
|
||||
id("configuration")
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
package com.tangem.domain.notifications.toggles
|
||||
|
||||
interface NotificationsFeatureToggles {
|
||||
val isNotificationsEnabled: Boolean
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue