├── .github └── workflows │ └── ci.yml ├── .gitignore ├── 0_example ├── bongo │ └── main.go ├── create-message │ └── main.go ├── modal │ └── main.go ├── moderate-myself │ ├── commands_test.go │ └── main.go ├── nft │ └── main.go └── todo │ ├── README.md │ ├── main.go │ └── todo.go ├── LICENSE ├── README.md ├── buttons.go ├── commands.go ├── embed-builder.go ├── flake.lock ├── flake.nix ├── format ├── format.go └── format_test.go ├── go.mod ├── go.sum ├── hash.go ├── interaction-opt.gen.go ├── interaction-response-builder.go ├── interaction-responses.go ├── interactions-api.go ├── interactions.go ├── internal ├── cmd │ ├── gen-opt │ │ └── main.go │ └── gen-register │ │ └── main.go └── rest │ ├── client.go │ ├── expectStatus.go │ ├── reqBuilder.go │ ├── verify.go │ └── verify_test.go ├── json.go ├── members.go ├── messages-api.go ├── messages.go ├── mux-routes.go ├── mux.go ├── options.go ├── owmock ├── http.go ├── keys.go └── responder-mock.go ├── register-cmd.gen.go ├── register-commands.go ├── resolved.go ├── responder.go ├── router.go ├── router_test.go ├── sample-component_test.go ├── snowflake.go └── users.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .env* -------------------------------------------------------------------------------- /0_example/bongo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/0_example/bongo/main.go -------------------------------------------------------------------------------- /0_example/create-message/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/0_example/create-message/main.go -------------------------------------------------------------------------------- /0_example/modal/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/0_example/modal/main.go -------------------------------------------------------------------------------- /0_example/moderate-myself/commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/0_example/moderate-myself/commands_test.go -------------------------------------------------------------------------------- /0_example/moderate-myself/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/0_example/moderate-myself/main.go -------------------------------------------------------------------------------- /0_example/nft/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/0_example/nft/main.go -------------------------------------------------------------------------------- /0_example/todo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/0_example/todo/README.md -------------------------------------------------------------------------------- /0_example/todo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/0_example/todo/main.go -------------------------------------------------------------------------------- /0_example/todo/todo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/0_example/todo/todo.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/README.md -------------------------------------------------------------------------------- /buttons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/buttons.go -------------------------------------------------------------------------------- /commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/commands.go -------------------------------------------------------------------------------- /embed-builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/embed-builder.go -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/flake.nix -------------------------------------------------------------------------------- /format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/format/format.go -------------------------------------------------------------------------------- /format/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/format/format_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/go.sum -------------------------------------------------------------------------------- /hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/hash.go -------------------------------------------------------------------------------- /interaction-opt.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/interaction-opt.gen.go -------------------------------------------------------------------------------- /interaction-response-builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/interaction-response-builder.go -------------------------------------------------------------------------------- /interaction-responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/interaction-responses.go -------------------------------------------------------------------------------- /interactions-api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/interactions-api.go -------------------------------------------------------------------------------- /interactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/interactions.go -------------------------------------------------------------------------------- /internal/cmd/gen-opt/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/internal/cmd/gen-opt/main.go -------------------------------------------------------------------------------- /internal/cmd/gen-register/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/internal/cmd/gen-register/main.go -------------------------------------------------------------------------------- /internal/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/internal/rest/client.go -------------------------------------------------------------------------------- /internal/rest/expectStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/internal/rest/expectStatus.go -------------------------------------------------------------------------------- /internal/rest/reqBuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/internal/rest/reqBuilder.go -------------------------------------------------------------------------------- /internal/rest/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/internal/rest/verify.go -------------------------------------------------------------------------------- /internal/rest/verify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/internal/rest/verify_test.go -------------------------------------------------------------------------------- /json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/json.go -------------------------------------------------------------------------------- /members.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/members.go -------------------------------------------------------------------------------- /messages-api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/messages-api.go -------------------------------------------------------------------------------- /messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/messages.go -------------------------------------------------------------------------------- /mux-routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/mux-routes.go -------------------------------------------------------------------------------- /mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/mux.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/options.go -------------------------------------------------------------------------------- /owmock/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/owmock/http.go -------------------------------------------------------------------------------- /owmock/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/owmock/keys.go -------------------------------------------------------------------------------- /owmock/responder-mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/owmock/responder-mock.go -------------------------------------------------------------------------------- /register-cmd.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/register-cmd.gen.go -------------------------------------------------------------------------------- /register-commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/register-commands.go -------------------------------------------------------------------------------- /resolved.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/resolved.go -------------------------------------------------------------------------------- /responder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/responder.go -------------------------------------------------------------------------------- /router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/router.go -------------------------------------------------------------------------------- /router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/router_test.go -------------------------------------------------------------------------------- /sample-component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/sample-component_test.go -------------------------------------------------------------------------------- /snowflake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/snowflake.go -------------------------------------------------------------------------------- /users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karitham/corde/HEAD/users.go --------------------------------------------------------------------------------