├── .gitignore ├── LICENSE ├── README.md ├── boot └── boot.go ├── commands ├── call.go ├── common.go ├── dontworry.go ├── eval.go ├── eval │ ├── go.go │ ├── go_test.go │ ├── node.go │ └── node_test.go ├── forward.go ├── forward │ ├── init.go │ ├── mastodon.go │ └── twitter.go ├── hush.go ├── init.go ├── mark.go ├── me.go ├── pin.go ├── purify.go ├── purify │ ├── aff.go │ ├── bilibili.go │ ├── expr.go │ ├── general.go │ ├── init.go │ ├── short.go │ ├── twitter.go │ └── youtube.go ├── whoami.go ├── whoami_test.go ├── yes.go └── yes │ ├── can.go │ ├── can_test.go │ ├── common.go │ ├── is.go │ ├── is_test.go │ ├── look.go │ ├── look_test.go │ ├── right.go │ └── right_test.go ├── db ├── forwarded.go ├── init.go ├── pinned.go └── replied.go ├── go.mod ├── go.sum ├── main.go ├── types └── types.go ├── utils ├── fix │ ├── fix.go │ ├── fix_test.go │ └── zstdlib.go ├── utils.go └── utils_test.go ├── vercel.json └── vercel ├── home.go └── hook.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .config 3 | .vercel 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/README.md -------------------------------------------------------------------------------- /boot/boot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/boot/boot.go -------------------------------------------------------------------------------- /commands/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/call.go -------------------------------------------------------------------------------- /commands/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/common.go -------------------------------------------------------------------------------- /commands/dontworry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/dontworry.go -------------------------------------------------------------------------------- /commands/eval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/eval.go -------------------------------------------------------------------------------- /commands/eval/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/eval/go.go -------------------------------------------------------------------------------- /commands/eval/go_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/eval/go_test.go -------------------------------------------------------------------------------- /commands/eval/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/eval/node.go -------------------------------------------------------------------------------- /commands/eval/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/eval/node_test.go -------------------------------------------------------------------------------- /commands/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/forward.go -------------------------------------------------------------------------------- /commands/forward/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/forward/init.go -------------------------------------------------------------------------------- /commands/forward/mastodon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/forward/mastodon.go -------------------------------------------------------------------------------- /commands/forward/twitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/forward/twitter.go -------------------------------------------------------------------------------- /commands/hush.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/hush.go -------------------------------------------------------------------------------- /commands/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/init.go -------------------------------------------------------------------------------- /commands/mark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/mark.go -------------------------------------------------------------------------------- /commands/me.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/me.go -------------------------------------------------------------------------------- /commands/pin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/pin.go -------------------------------------------------------------------------------- /commands/purify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/purify.go -------------------------------------------------------------------------------- /commands/purify/aff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/purify/aff.go -------------------------------------------------------------------------------- /commands/purify/bilibili.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/purify/bilibili.go -------------------------------------------------------------------------------- /commands/purify/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/purify/expr.go -------------------------------------------------------------------------------- /commands/purify/general.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/purify/general.go -------------------------------------------------------------------------------- /commands/purify/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/purify/init.go -------------------------------------------------------------------------------- /commands/purify/short.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/purify/short.go -------------------------------------------------------------------------------- /commands/purify/twitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/purify/twitter.go -------------------------------------------------------------------------------- /commands/purify/youtube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/purify/youtube.go -------------------------------------------------------------------------------- /commands/whoami.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/whoami.go -------------------------------------------------------------------------------- /commands/whoami_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/whoami_test.go -------------------------------------------------------------------------------- /commands/yes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes.go -------------------------------------------------------------------------------- /commands/yes/can.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes/can.go -------------------------------------------------------------------------------- /commands/yes/can_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes/can_test.go -------------------------------------------------------------------------------- /commands/yes/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes/common.go -------------------------------------------------------------------------------- /commands/yes/is.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes/is.go -------------------------------------------------------------------------------- /commands/yes/is_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes/is_test.go -------------------------------------------------------------------------------- /commands/yes/look.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes/look.go -------------------------------------------------------------------------------- /commands/yes/look_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes/look_test.go -------------------------------------------------------------------------------- /commands/yes/right.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes/right.go -------------------------------------------------------------------------------- /commands/yes/right_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/commands/yes/right_test.go -------------------------------------------------------------------------------- /db/forwarded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/db/forwarded.go -------------------------------------------------------------------------------- /db/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/db/init.go -------------------------------------------------------------------------------- /db/pinned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/db/pinned.go -------------------------------------------------------------------------------- /db/replied.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/db/replied.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/main.go -------------------------------------------------------------------------------- /types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/types/types.go -------------------------------------------------------------------------------- /utils/fix/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/utils/fix/fix.go -------------------------------------------------------------------------------- /utils/fix/fix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/utils/fix/fix_test.go -------------------------------------------------------------------------------- /utils/fix/zstdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/utils/fix/zstdlib.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/utils/utils.go -------------------------------------------------------------------------------- /utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/utils/utils_test.go -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/vercel.json -------------------------------------------------------------------------------- /vercel/home.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/vercel/home.go -------------------------------------------------------------------------------- /vercel/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxyazi/bendan/HEAD/vercel/hook.go --------------------------------------------------------------------------------