<@U0B8ZP13Q>: What do you think on adding a wrappi...
# kobalt
y
@cedric: What do you think on adding a wrapping method:
Copy code
fun build(building: () -> Unit) = building()
So we can use it like that:
Copy code
val ModuleName = build {
         repos(...)
        kotlinProject {
        }
I'm not so sure about the name
build
, but with a good name it can look good. And it is just 1 method to add, so it isn't that bad.