smbcloud_networking/
constants.rs1#[cfg(debug_assertions)]
2pub const GH_OAUTH_CLIENT_ID: &str = "053e152f1b78ecee552b";
3#[cfg(not(debug_assertions))]
4pub const GH_OAUTH_CLIENT_ID: &str = "bf1f12d97659a6495e43";
5
6pub const GH_OAUTH_REDIRECT_HOST: &str = "http://localhost";
7pub const GH_OAUTH_REDIRECT_PORT: &str = "8808";
8
9pub const SMB_CLIENT_ID: &str = "cli";
10pub const SMB_CLIENT_SECRET: &str = "YOUR_SMB_CLIENT_SECRET";
11pub const SMB_USER_AGENT: &str = "YOUR_SMB_USER_AGENT";
12
13pub const PATH_USERS_CHECK_EMAIL: &str = "v1/check_email";
15pub const PATH_USERS_ME: &str = "v1/me";
16pub const PATH_USERS: &str = "v1/users";
17pub const PATH_USERS_PASSWORD: &str = "v1/users/password";
18pub const PATH_USERS_SIGN_OUT: &str = "v1/users/sign_out";
19pub const PATH_USERS_SIGN_IN: &str = "v1/users/sign_in";
20pub const PATH_LINK_GITHUB_ACCOUNT: &str = "v1/link_github_account";
21pub const PATH_RESET_PASSWORD_INSTRUCTIONS: &str = "v1/resend_reset_password_instructions";
22pub const PATH_RESEND_CONFIRMATION: &str = "v1/resend_confirmation";
23pub const PATH_AUTHORIZE: &str = "v1/authorize";