gitextract_8oz87dn3/ ├── .gitignore ├── .prettierignore ├── Dockerfile ├── LICENSE ├── README.md ├── README_DEV.md ├── channel/ │ ├── channel.go │ ├── channel_file.go │ └── channel_record.go ├── chaturbate/ │ └── chaturbate.go ├── config/ │ └── config.go ├── docker-compose.yml ├── entity/ │ └── entity.go ├── go.mod ├── go.sum ├── internal/ │ ├── internal.go │ ├── internal_err.go │ └── internal_req.go ├── main.go ├── manager/ │ └── manager.go ├── router/ │ ├── router.go │ ├── router_handler.go │ └── view/ │ ├── templates/ │ │ ├── channel_info.html │ │ ├── index.html │ │ └── site.webmanifest │ └── view.go └── server/ ├── config.go └── manager.go