This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
plugins {
|
||||
kotlin("jvm") version "2.1.10"
|
||||
}
|
||||
|
||||
group = "ru.soune"
|
||||
version = "1.0.0"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.2")
|
||||
implementation("io.insert-koin:koin-core:4.1.1")
|
||||
implementation("io.insert-koin:koin-core-jvm:4.1.1")
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
kotlin {
|
||||
jvmToolchain(21)
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package ru.soune
|
||||
|
||||
fun main() {
|
||||
println("Hello World!")
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package ru.soune.actions
|
||||
|
||||
abstract class NoCopyAction
|
||||
@@ -0,0 +1,5 @@
|
||||
package ru.soune.actions.free
|
||||
|
||||
import ru.soune.actions.NoCopyAction
|
||||
|
||||
sealed class NoCopyFreeAction : NoCopyAction()
|
||||
@@ -0,0 +1,8 @@
|
||||
package ru.soune.actions.paid
|
||||
|
||||
import ru.soune.actions.NoCopyAction
|
||||
|
||||
sealed class NoCopyPaidAction : NoCopyAction() {
|
||||
|
||||
abstract val cost: Double
|
||||
}
|
||||
Reference in New Issue
Block a user