Improved time prefix

This commit is contained in:
Carlos
2020-05-29 16:37:35 +02:00
parent a5335b1e6e
commit 2643999e8d
9 changed files with 46 additions and 25 deletions

View File

@ -173,22 +173,4 @@ class WebConsolePersistenceManager{
return JSON.parse(window.localStorage.WebConsole).settings[name];
}
}
class WSServer{
constructor(serverName, serverURI){
this.serverName = serverName;
this.serverURI = serverURI;
}
setPassword(pwd){
this.serverPassword = pwd;
}
}
class Setting{
constructor(name, defaultValue){
this.name = name;
this.defaultValue = defaultValue;
}
}