16 lines
305 B
Kotlin
16 lines
305 B
Kotlin
/*
|
|
* Copyright © 2025 RTAkland
|
|
* Date: 2025/4/28 23:13
|
|
* Open Source Under Apache-2.0 License
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
*/
|
|
|
|
package cn.rtast.runbroker.common
|
|
|
|
data class JavaExecPath(
|
|
val path: String
|
|
) {
|
|
companion object {
|
|
val DEFAULT = JavaExecPath("-")
|
|
}
|
|
} |