NCBACK-36: [Referral] Referral Service
Test Workflow / test (push) Successful in 3s

This commit is contained in:
milidev
2026-02-05 15:43:42 +07:00
parent 6643070999
commit 27b812b0da
13 changed files with 196 additions and 0 deletions
+5
View File
@@ -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
}