gitextract_26pnjm80/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── go.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml ├── cmd/ │ ├── README.md │ ├── certs/ │ │ ├── CA.key │ │ ├── CA.pem │ │ ├── CA.srl │ │ ├── localhost.crt │ │ ├── localhost.csr │ │ ├── localhost.decrypted.key │ │ ├── localhost.ext │ │ └── localhost.key │ ├── handlers.go │ ├── main.go │ └── static/ │ ├── css/ │ │ ├── main.css │ │ └── normalize.css │ ├── index.html │ └── js/ │ ├── main.js │ └── sse.js ├── config.go ├── config_test.go ├── errors.go ├── errors_test.go ├── extensions/ │ └── sse/ │ ├── README.md │ ├── client.go │ ├── message.go │ └── sse.go ├── go.mod ├── go.sum ├── middleware/ │ ├── accesslog/ │ │ ├── accesslog.go │ │ └── accesslog_test.go │ └── cors/ │ ├── cors.go │ └── cors_test.go ├── responses.go ├── responses_test.go ├── route.go ├── route_test.go ├── router.go ├── router_test.go ├── tests/ │ ├── config.json │ └── ssl/ │ ├── server.crt │ ├── server.csr │ └── server.key ├── webgo.go └── webgo_test.go