(ctx context.Context, localpart string, chatFee string)
| 904 | } |
| 905 | |
| 906 | func (a *UserInternalAPI) SetChatFee(ctx context.Context, localpart string, chatFee string) (err error) { |
| 907 | return a.DB.SetChatFee(ctx, localpart, chatFee) |
| 908 | } |
| 909 | |
| 910 | func (a *UserInternalAPI) InsertAddressBook(ctx context.Context, localpart string, friendLocalpart []string) (err error) { |
| 911 | return a.DB.InsertAddressBook(ctx, localpart, friendLocalpart) |
nothing calls this directly
no test coverage detected