diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-15 01:35:46 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-15 01:35:46 +0200 |
commit | 9a17ee0e31c4ee4fbf75e5f1bc007a99bbe5ed4b (patch) | |
tree | 52660eecfcb318e274bbdddd5415467f0f0f07ad /pixel-client/src/config.rs | |
parent | bd4bb93e6da8d7f8dd3ad86ba1bea1fd8892a1a1 (diff) | |
download | hurrycurry-9a17ee0e31c4ee4fbf75e5f1bc007a99bbe5ed4b.tar hurrycurry-9a17ee0e31c4ee4fbf75e5f1bc007a99bbe5ed4b.tar.bz2 hurrycurry-9a17ee0e31c4ee4fbf75e5f1bc007a99bbe5ed4b.tar.zst |
pc: add username setting
Diffstat (limited to 'pixel-client/src/config.rs')
-rw-r--r-- | pixel-client/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pixel-client/src/config.rs b/pixel-client/src/config.rs index 8f051b99..4d50ae10 100644 --- a/pixel-client/src/config.rs +++ b/pixel-client/src/config.rs @@ -25,7 +25,7 @@ use std::{ #[derive(Serialize, Deserialize)] pub struct Config { - username: String, + pub username: String, } impl Config { |