blob: b23e3405039d7f8f7946e1b9579a0583794210ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package com.juick.service;
import java.util.List;
/**
* Created by vt on 24/11/2016.
*/
public interface TelegramService {
boolean addChat(Long id);
List<Long> getChats();
int getUser(long tgId);
boolean createTelegramUser(long tgID, String tgName);
boolean deleteTelegramUser(Integer uid);
List<Long> getSubscribers(int uid);
List<Long> getSubscribersToComments(int mid, int ignore_uid);
}
|