Skip to content

Commit

Permalink
feat: update dependencies and modify api build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
HsiangNianian committed Sep 8, 2024
1 parent 9005420 commit 01daf68
Show file tree
Hide file tree
Showing 17 changed files with 1,242 additions and 328 deletions.
76 changes: 74 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ authors = ["HsiangNianian"]
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.19.2", features = ["abi3-py39"] }
pyo3 = { version = "0.19.2", features = ["abi3-py39"] }
time = "0.3.36"
1 change: 1 addition & 0 deletions iamai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@
"Plugin",
"libcore",
]

13 changes: 13 additions & 0 deletions iamai/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import sys

from .cli import cli_func


def main(*args):
try:
cli_func(*args)
except KeyboardInterrupt:
sys.exit(1)

if __name__ == "__main__":
main()
Loading

0 comments on commit 01daf68

Please sign in to comment.