Taras S.
Taras S.
### Is your feature request related to a problem? Please describe. Relay is designed for high performance at any scale. Relay keeps management of data-fetching easy, whether your app has...
Extend example with more complicated logic and test it with test_utils usage https://github.com/TakeoffTech/clj-camel/blob/master/examples/simple/test/example/simple_test.clj
Currently, it works with standard string formatter: ```go testMap := map[string]any{ "key1": "value1", "key2": "value2", } logger.Info("message", slog.Any("test", testMap)) logger.Info("message", slog.Any("test", TestMap{Key1: "value1", Key2: "value2"})) ``` ``` 2025-01-30 12:31:23 INF...