├── LICENSE ├── README.md ├── agent_template ├── Makefile ├── ax_config.axs ├── config.json ├── go.mod ├── pl_agent.go └── pl_main.go ├── listener_template_external ├── Makefile ├── ax_config.axs ├── config.json ├── go.mod ├── pl_listener.go └── pl_main.go └── listener_template_internal ├── Makefile ├── ax_config.axs ├── config.json ├── go.mod ├── pl_listener.go └── pl_main.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/README.md -------------------------------------------------------------------------------- /agent_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/agent_template/Makefile -------------------------------------------------------------------------------- /agent_template/ax_config.axs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/agent_template/ax_config.axs -------------------------------------------------------------------------------- /agent_template/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/agent_template/config.json -------------------------------------------------------------------------------- /agent_template/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/agent_template/go.mod -------------------------------------------------------------------------------- /agent_template/pl_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/agent_template/pl_agent.go -------------------------------------------------------------------------------- /agent_template/pl_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/agent_template/pl_main.go -------------------------------------------------------------------------------- /listener_template_external/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_external/Makefile -------------------------------------------------------------------------------- /listener_template_external/ax_config.axs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_external/ax_config.axs -------------------------------------------------------------------------------- /listener_template_external/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_external/config.json -------------------------------------------------------------------------------- /listener_template_external/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_external/go.mod -------------------------------------------------------------------------------- /listener_template_external/pl_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_external/pl_listener.go -------------------------------------------------------------------------------- /listener_template_external/pl_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_external/pl_main.go -------------------------------------------------------------------------------- /listener_template_internal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_internal/Makefile -------------------------------------------------------------------------------- /listener_template_internal/ax_config.axs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_internal/ax_config.axs -------------------------------------------------------------------------------- /listener_template_internal/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_internal/config.json -------------------------------------------------------------------------------- /listener_template_internal/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_internal/go.mod -------------------------------------------------------------------------------- /listener_template_internal/pl_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_internal/pl_listener.go -------------------------------------------------------------------------------- /listener_template_internal/pl_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Adaptix-Framework/templates-extender/HEAD/listener_template_internal/pl_main.go --------------------------------------------------------------------------------