Updated on 2026-08-14
This commit is contained in:
parent
517a9609ec
commit
91fbe78c9e
6 changed files with 18 additions and 0 deletions
|
|
@ -67,6 +67,7 @@ dependencies {
|
|||
implementation(projects.domain.staking)
|
||||
implementation(projects.domain.walletConnect)
|
||||
implementation(projects.domain.markets)
|
||||
implementation(projects.domain.manageTokens)
|
||||
|
||||
implementation(projects.common)
|
||||
implementation(projects.common.routing)
|
||||
|
|
|
|||
1
domain/manage-tokens/.gitignore
vendored
Normal file
1
domain/manage-tokens/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
9
domain/manage-tokens/build.gradle.kts
Normal file
9
domain/manage-tokens/build.gradle.kts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
plugins {
|
||||
alias(deps.plugins.kotlin.jvm)
|
||||
id("configuration")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api(projects.domain.manageTokens.models)
|
||||
api(projects.domain.core)
|
||||
}
|
||||
1
domain/manage-tokens/models/.gitignore
vendored
Normal file
1
domain/manage-tokens/models/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
4
domain/manage-tokens/models/build.gradle.kts
Normal file
4
domain/manage-tokens/models/build.gradle.kts
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
plugins {
|
||||
alias(deps.plugins.kotlin.jvm)
|
||||
id("configuration")
|
||||
}
|
||||
|
|
@ -226,6 +226,8 @@ include(":domain:staking:models")
|
|||
include(":domain:wallet-connect")
|
||||
include(":domain:markets")
|
||||
include(":domain:markets:models")
|
||||
include(":domain:manage-tokens")
|
||||
include(":domain:manage-tokens:models")
|
||||
// endregion Domain modules
|
||||
|
||||
// region Data modules
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue