Maksym
Maksym
```scala trait LogSink[F[_]] { def flush(entry: Entry) : F[Unit] = ??? } ```
Once I defined new artifact it would be fantastic to generate all necessary folders for further project we should know - organisation (root package) - folders for plugins (we define...
For example, if we need to have some generic logic for components where we need to work with same enums. It would be nice to have a chance to inhetic...
Current ```parse``` method is case sensitive. ```scala enum CustomEnum { Field1 Field2 } def parse(str: String) : CustomEnum = { str match { case "Field1" => Field1 case "Field2" =>...
We should be able to provide a failure message with go error information. For example ```go return out.NewServiceFailuref("error occurred while doing for requeted context %+v smth. reason: %+v", yourCtx, err)...
while importing two items with the same name, IDL applies the last one instead of throwing an error about `imported two items with the same name` ```txt import foo.bar1.{ Item...
Can we provide arbitrary models in companion object for their usage in tests? Or we could create a separate artifact for interop with scalacheck but I don't know how efficiently...