______ _ _      _____                      _ 
 |  ____(_) |    |  __ \                    | |
 | |__   _| | ___| |  | |_ __ ___  _ __   __| |
 |  __| | | |/ _ \ |  | | '__/ _ \| '_ \ / _` |
 | |    | | |  __/ |__| | | | (_) | |_) | (_| |
 |_|    |_|_|\___|_____/|_|  \___/| .__/ \__,_|
                                  | |          
                                  |_|          
 welcome to filedropd :: temporary file drops over HTTP 
 quick start:
   $ curl -F "file=@yourfile" http://your-server/upload
   -> returns a short token for download until expiry

download:
  $ curl -O http://your-server/
  -> streams the stored file directly (24h retention)

 limits:
  - max size: 5GB per upload
  - retention: 24 hours from upload time
  - naming: files stored as <short token>.<ext>
  tip: curl users can add -# or --progress-bar to watch upload progress