You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by sh...@apache.org on 2021/08/02 15:09:20 UTC

[apisix-python-plugin-runner] branch master updated: feat: init python runner project framework. (#1)

This is an automated email from the ASF dual-hosted git repository.

shuaijinchao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-python-plugin-runner.git


The following commit(s) were added to refs/heads/master by this push:
     new d6ba074  feat: init python runner project framework. (#1)
d6ba074 is described below

commit d6ba07401c1163f2241a1864a3097842a0b7776b
Author: 帅进超 <sh...@gmail.com>
AuthorDate: Mon Aug 2 23:09:16 2021 +0800

    feat: init python runner project framework. (#1)
    
    * feat: add runner modules.
    
    * feat: add runner http modules.
    
    * feat: add plugin modules for runner.
    
    * feat: add socket modules for runner.
    
    * feat: add customize plugins modules.
    
    * feat: add runner program entry file.
---
 src/main.py                   | 6 ++++++
 src/plugins/__init__.py       | 0
 src/runner/__init__.py        | 0
 src/runner/http/__init__.py   | 0
 src/runner/plugin/__init__.py | 0
 src/runner/socket/__init__.py | 0
 6 files changed, 6 insertions(+)

diff --git a/src/main.py b/src/main.py
new file mode 100644
index 0000000..e6d098d
--- /dev/null
+++ b/src/main.py
@@ -0,0 +1,6 @@
+def main() -> None:
+    pass
+
+
+if __name__ == '__main__':
+    main()
diff --git a/src/plugins/__init__.py b/src/plugins/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/src/runner/__init__.py b/src/runner/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/src/runner/http/__init__.py b/src/runner/http/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/src/runner/plugin/__init__.py b/src/runner/plugin/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/src/runner/socket/__init__.py b/src/runner/socket/__init__.py
new file mode 100644
index 0000000..e69de29