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

Commit d4c09f4

Browse files
committed
fix: fix config serialization
1 parent a2c6e56 commit d4c09f4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/main/kotlin/com/liteldev/headeroutput/config/OutputConfig.kt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ data class OutputConfig(
1616
@Serializable
1717
data class Sort(
1818
val parent: List<Parent>,
19+
val namespace: List<Namespace>,
1920
val regex: List<Regex>
2021
) {
2122
@Serializable
@@ -24,6 +25,12 @@ data class OutputConfig(
2425
val dst: String
2526
)
2627

28+
@Serializable
29+
data class Namespace(
30+
val namespace: String,
31+
val dst: String
32+
)
33+
2734
@Serializable
2835
data class Regex(
2936
val regex: String,

0 commit comments

Comments
 (0)