We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cf2813 commit 370f1acCopy full SHA for 370f1ac
app/build.gradle.kts
@@ -25,6 +25,8 @@ dependencies {
25
// Use the JUnit 5 integration.
26
testImplementation(libs.junit.jupiter.engine)
27
28
+ implementation("org.breez:libbreez-sdk-jvm:<version>")
29
+
30
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
31
32
// This dependency is used by the application.
app/src/main/kotlin/org/example/AppEngine.kt
@@ -0,0 +1,8 @@
1
+class AppEngine {
2
+ val blockchain = BlockchainEngine()
3
+ val zk = ZkCoinJoin()
4
+ val lightning = BreezService()
5
+ val liquid = LiquidBridge()
6
7
+ fun getGreeting() = "Welcome to Firebolt SDK"
8
+}
0 commit comments