summaryrefslogtreecommitdiffstats
path: root/src/services/CommandsService.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/CommandsService.js')
-rw-r--r--src/services/CommandsService.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/services/CommandsService.js b/src/services/CommandsService.js
new file mode 100644
index 0000000..1248c6d
--- /dev/null
+++ b/src/services/CommandsService.js
@@ -0,0 +1,24 @@
1export default {
2 logout() {
3 console.log("logout :)")
4 },
5 last_message() {
6 console.log("last massege")
7 },
8 chat() {
9 return {
10 search() {console.log("search")},
11 add() {console.log("add friend")},
12 next_tab() {
13 return {
14 hi_in_next_tab() {
15 console.log('Hello there! :)')
16 }
17 }
18 }
19 }
20 },
21 notifications() {},
22 users() {},
23 groups() {}
24}