Browse Source

Start writing ControlMessage.

pull/1/head
Titouan Rigoudy 9 years ago
parent
commit
f7416e4d37
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      src/utils/ControlMessage.js

+ 9
- 0
src/utils/ControlMessage.js View File

@ -0,0 +1,9 @@
export default {
login: (username, password) => ({
"variant": "LoginRequest",
"fields": [{
"username": username,
"password": password,
}]
})
};

Loading…
Cancel
Save