Change default Send host to the public Mozilla one

This commit is contained in:
timvisee 2018-04-17 23:29:05 +02:00
parent 8825e6e09c
commit 1cc0d6345f
No known key found for this signature in database
GPG key ID: 109CBA0BF74036C2
3 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,8 @@
use reqwest::StatusCode;
/// The default Send host to use.
pub const SEND_DEFAULT_HOST: &'static str = "https://send.firefox.com/";
/// The HTTP status code that is returned for expired or non existant files.
pub const HTTP_STATUS_EXPIRED: StatusCode = StatusCode::NotFound;