alef 0.24.13

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
{% if is_async %}
        return withContext(Dispatchers.IO) {
            val responseJson = {{ bridge_call }}
            {{ deserialize_call }}
        }
{% else %}
        val responseJson = {{ bridge_call }}
        return {{ deserialize_call }}
{% endif %}