1package cleverbot
2
3// Session ...
4type Session struct {
5	User string `json:"user"`
6	Key  string `json:"key"`
7	Nick string `json:"nick"`
8	Text string `json:"text"`
9}
10