Skip to content

Commit

Permalink
Introduce Platform enum in domain
Browse files Browse the repository at this point in the history
  • Loading branch information
marc0der committed Jan 16, 2025
1 parent 3dd7cea commit 2c98458
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/kotlin/io/sdkman/domain/Domain.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ data class UniqueVersion(
val platform: String,
)

enum class Platform(val slug: String) {
LINUX_ARM64("linuxarm64"), LINUX_64("linuxx64"), UNIVERSAL("universal");
}

0 comments on commit 2c98458

Please sign in to comment.