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,7 @@
package se.senashdev.projekt.api
package ${config.package}
object Protocol:
<#list typeDefinitions as type>
<#list typeDefinitions?sort as type>
case class ${type.name?cap_first}(
<#list type.fields as field>
${field.name} : ${field.type},