jffi 0.4.13

Cross-platform framework for building native apps with Rust business logic and platform-native UIs
1
2
3
4
5
6
7
8
9
10
from {{name_snake}}_core import Core

class CoreWrapper:
    """Wrapper for Rust Core bindings"""
    
    def __init__(self):
        self.core = Core()
    
    def greeting(self):
        return self.core.greeting()