summaryrefslogtreecommitdiffstats
path: root/src/services/CommandsService.js
blob: 1248c6d459fbf54a127ce28b0892ca642aa483ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export default {
    logout() { 
        console.log("logout :)")
    },
    last_message() {
        console.log("last massege")
    },
    chat() {
        return {
            search() {console.log("search")},
            add() {console.log("add friend")},
            next_tab() {
                return {
                    hi_in_next_tab() {
                        console.log('Hello there! :)')
                    }
                }
            }
        } 
    },
    notifications() {},
    users() {},
    groups() {}
}