Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 240 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 240 Bytes

Dranik, a framework for creating robots

Example

main.rs:

dranik::load_config!();
dranik::main!();

main.py:

from dranik.api import DranikRuntime

def main(r: DranikRuntime):
    r.log("Hello, world!")