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