1
0
Fork 0
Tool that allows for uploading large files to Discord in parts using webhooks.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemonsh cfa14492d2 readme: instruct people to use the latest tag instead of master 2 months ago
src add license 2 months ago
.gitignore Initial commit 2 years ago
Cargo.lock readme: instruct people to use the latest tag instead of master 2 months ago
Cargo.toml format Cargo.toml 2 months ago
LICENSE add license 2 months ago
README.md readme: instruct people to use the latest tag instead of master 2 months ago
TODO.md add todo 2 months ago
rustfmt.toml Add rustfmt.toml 2 months ago

README.md

chuncord

Tool that allows for uploading large files to Discord in parts using webhooks.

Getting started

Note: You need to have Git and the Rust toolchain installed.

  • Clone and compile chuncord:

    git clone https://git.lemonsh.moe/lemon/chuncord --depth 1 --branch 0.1  # latest release
    cd chuncord
    cargo build --release
    

    chuncord will be in target/release/chuncord.

  • Add a Discord webhook

    cd target/release
    ./chuncord webhook add mywebhook <webhook URL>
    
  • Upload something

    ./chuncord upload ~/Downloads/frog.tar
    
  • For more help, see ./chuncord --help