Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
fix: fix config serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Oct 9, 2024
1 parent a2c6e56 commit d4c09f4
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ data class OutputConfig(
@Serializable
data class Sort(
val parent: List<Parent>,
val namespace: List<Namespace>,
val regex: List<Regex>
) {
@Serializable
Expand All @@ -24,6 +25,12 @@ data class OutputConfig(
val dst: String
)

@Serializable
data class Namespace(
val namespace: String,
val dst: String
)

@Serializable
data class Regex(
val regex: String,
Expand Down

0 comments on commit d4c09f4

Please sign in to comment.