Unexported unnecessary members

This commit is contained in:
Artyom Belousov 2021-02-07 15:58:50 +03:00
parent 4da8e94bcc
commit d8a295be75
14 changed files with 134 additions and 115 deletions

View file

@ -9,7 +9,7 @@ type testMessage struct {
message string
}
func (s *testSender) Send(userId int64, message string) {
func (s *testSender) send(userId int64, message string) {
s.sent = append(s.sent, testMessage{
userId: userId,
message: message,