Make config values into a map

This commit is contained in:
Johan Maasing 2025-04-09 20:00:23 +02:00
parent 57088238c4
commit 2558a52b42
8 changed files with 24 additions and 27 deletions

View file

@ -1,7 +1,9 @@
{ some: configvalue, someother:value }
AType(data: List[String])
{ some: configvalue, someother:value,
package: se.rutdev.senash
}
/some/endpoint <- SomeType(foo:String)
Embedded(foo:Bar)
/some/other/endpoint <- (bar:Seq[Embedded])
/yet/other/endpoint2 <- (bar2:Seq[AType])
/yet/other/endpoint2 <- (bar2:Seq[AType])
AType(data: java.util.List<String>)