├── .gitignore ├── .project ├── LICENSE ├── README.md └── src ├── agent ├── admin.go ├── agent.go ├── agent_test.go └── server.go └── main └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | /pkg/* 2 | /bin/* -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecreator/http-agent-go/HEAD/.project -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecreator/http-agent-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecreator/http-agent-go/HEAD/README.md -------------------------------------------------------------------------------- /src/agent/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecreator/http-agent-go/HEAD/src/agent/admin.go -------------------------------------------------------------------------------- /src/agent/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecreator/http-agent-go/HEAD/src/agent/agent.go -------------------------------------------------------------------------------- /src/agent/agent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecreator/http-agent-go/HEAD/src/agent/agent_test.go -------------------------------------------------------------------------------- /src/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecreator/http-agent-go/HEAD/src/agent/server.go -------------------------------------------------------------------------------- /src/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bluecreator/http-agent-go/HEAD/src/main/main.go --------------------------------------------------------------------------------