we are so back (first real commit)

This commit is contained in:
ForeverPyrite
2025-09-19 21:34:09 -04:00
parent 83c7e7402d
commit a3176b6760
13 changed files with 880 additions and 0 deletions

2
r2python/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/target
.aider*

7
r2python/Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "r2python"
version = "0.1.0"
edition = "2024"
[dependencies]
pyo3 = "0.25.0"

1
r2python/src/lib.rs Normal file
View File

@@ -0,0 +1 @@
use pyo3::prelude::*;