Share encrypted logs without leaving terminal

from file
  $ curl https://logs.moe -F data=@debug.log
from stdin
  $ cat debug.log | curl https://logs.moe -F data=@-
alias (file or stdin)
  logsmoe() { curl https://logs.moe -F data="@${1:--}"; }
  $ logsmoe debug.log
  $ git diff --staged | logsmoe

- Only accepts form-data and field name "data"
- Upload size limited to 20MiB
- Anything is deleted in 7 days
- Everything is saved encrypted
- Decryption only happens on browser

This is a personal project and nothing is collected

Inspiration ....... https://x0.at | https://0bin.net/faq/
Source ........ https://github.com/fabricionaweb/logs.moe