diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-01-07 03:24:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-07 03:24:56 +0100 |
commit | 1ae404dc90a4aa922652e3bedcdee9c3b0016593 (patch) | |
tree | fe8e0a7e23a1b781dd7388dc5f7d5417e7b7cd92 /src-tauri/src/constants.rs | |
parent | 226bac84db9f37a7cd9e7247a77b6024108a7d9f (diff) | |
download | FlightCore-1ae404dc90a4aa922652e3bedcdee9c3b0016593.tar.gz FlightCore-1ae404dc90a4aa922652e3bedcdee9c3b0016593.zip |
refactor: Store global const in separate file (#131)
Moved user agent there for now
Diffstat (limited to 'src-tauri/src/constants.rs')
-rw-r--r-- | src-tauri/src/constants.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src-tauri/src/constants.rs b/src-tauri/src/constants.rs new file mode 100644 index 00000000..9d7e117c --- /dev/null +++ b/src-tauri/src/constants.rs @@ -0,0 +1,3 @@ +// This file stores various global constants values + +pub const APP_USER_AGENT: &str = "R2NorthstarTools/FlightCore"; |