├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── README_ZH.md ├── agent.go ├── agent_caixin.go ├── agent_ft.go ├── agent_interface.go ├── agent_the_initium.go ├── agent_the_initium_test.go ├── browser_automation.go ├── conf.go ├── conf_test.go ├── go.mod ├── go.sum ├── helper.go ├── logging.go ├── main.go ├── otp.go ├── persistence.go ├── persistence_test.go ├── readwise.go ├── readwise_test.go ├── rss.go ├── screenshot.png ├── template └── index.html └── web.go /.dockerignore: -------------------------------------------------------------------------------- 1 | data/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/README_ZH.md -------------------------------------------------------------------------------- /agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/agent.go -------------------------------------------------------------------------------- /agent_caixin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/agent_caixin.go -------------------------------------------------------------------------------- /agent_ft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/agent_ft.go -------------------------------------------------------------------------------- /agent_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/agent_interface.go -------------------------------------------------------------------------------- /agent_the_initium.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/agent_the_initium.go -------------------------------------------------------------------------------- /agent_the_initium_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/agent_the_initium_test.go -------------------------------------------------------------------------------- /browser_automation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/browser_automation.go -------------------------------------------------------------------------------- /conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/conf.go -------------------------------------------------------------------------------- /conf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/conf_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/go.sum -------------------------------------------------------------------------------- /helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/helper.go -------------------------------------------------------------------------------- /logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/logging.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/main.go -------------------------------------------------------------------------------- /otp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/otp.go -------------------------------------------------------------------------------- /persistence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/persistence.go -------------------------------------------------------------------------------- /persistence_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/persistence_test.go -------------------------------------------------------------------------------- /readwise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/readwise.go -------------------------------------------------------------------------------- /readwise_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/readwise_test.go -------------------------------------------------------------------------------- /rss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/rss.go -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/screenshot.png -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/template/index.html -------------------------------------------------------------------------------- /web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fr0der1c/Readform/HEAD/web.go --------------------------------------------------------------------------------