Store save user, message.
| 15 | |
| 16 | // Store save user, message. |
| 17 | type Store struct { |
| 18 | host string |
| 19 | dbPath string |
| 20 | user *userDB |
| 21 | group *groupDB |
| 22 | message *messageDB |
| 23 | postman *postman |
| 24 | friend *friendDB |
| 25 | file *fileDB |
| 26 | notice *util.Notice |
| 27 | master *util.Master |
| 28 | } |
| 29 | |
| 30 | // NewStore new Store server. |
| 31 | func NewStore(host, dbPath string) *Store { |
nothing calls this directly
no outgoing calls
no test coverage detected