aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/pyo3_template
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2026-01-29 17:12:55 +0800
committerHsiangNianian <i@jyunko.cn>2026-01-29 17:12:55 +0800
commitf1c7d4005768079b0b8e8fac15ad9b191b700022 (patch)
tree85651a076899b506ee7de0ab413a414c527688f0 /src/pyo3_template
parent637cba626c776d0fdad52511e46a5eeb15f7241a (diff)
downloadDropIn-f1c7d4005768079b0b8e8fac15ad9b191b700022.tar.gz
DropIn-f1c7d4005768079b0b8e8fac15ad9b191b700022.zip
chore: Rename project from pyo3_template to dropin and update related files
Diffstat (limited to 'src/pyo3_template')
-rw-r--r--src/pyo3_template/__init__.py0
-rw-r--r--src/pyo3_template/__main__.py8
-rw-r--r--src/pyo3_template/_core.pyi3
3 files changed, 0 insertions, 11 deletions
diff --git a/src/pyo3_template/__init__.py b/src/pyo3_template/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/src/pyo3_template/__init__.py
+++ /dev/null
diff --git a/src/pyo3_template/__main__.py b/src/pyo3_template/__main__.py
deleted file mode 100644
index 0135c6d..0000000
--- a/src/pyo3_template/__main__.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from ._core import sum_as_string
-
-def main():
- print(sum_as_string(1, 2))
-
-
-if __name__ == "__main__":
- main() \ No newline at end of file
diff --git a/src/pyo3_template/_core.pyi b/src/pyo3_template/_core.pyi
deleted file mode 100644
index 4945a82..0000000
--- a/src/pyo3_template/_core.pyi
+++ /dev/null
@@ -1,3 +0,0 @@
-def sum_as_string(self, a: int, b: int) -> str: ...
-
-class Base: ... \ No newline at end of file