remove password from rusty account for quicker testing
This commit is contained in:
parent
3cfabcc39f
commit
bdb0436c9f
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ pub struct GameServer {
|
||||||
impl GameServer {
|
impl GameServer {
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
let mut creds = HashMap::new();
|
let mut creds = HashMap::new();
|
||||||
creds.insert("rusty".to_string(), "rusty".to_string());
|
creds.insert("rusty".to_string(), "".to_string());
|
||||||
creds.insert("test".to_string(), "test".to_string());
|
creds.insert("test".to_string(), "test".to_string());
|
||||||
creds.insert("dragonfly".to_string(), "dragonfly".to_string());
|
creds.insert("dragonfly".to_string(), "dragonfly".to_string());
|
||||||
Self {
|
Self {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue