mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
613 B
38 lines
613 B
// Copyright 2022 ROC. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package core
|
|
|
|
// DataService 数据服务集成
|
|
type DataService interface {
|
|
// 钱包服务
|
|
WalletService
|
|
|
|
// 消息服务
|
|
MessageService
|
|
|
|
// 话题服务
|
|
TopicService
|
|
|
|
// 广场泡泡服务
|
|
IndexPostsService
|
|
|
|
// 推文服务
|
|
TweetService
|
|
TweetManageService
|
|
TweetHelpService
|
|
|
|
// 评论服务
|
|
CommentService
|
|
CommentManageService
|
|
|
|
// 用户服务
|
|
UserManageService
|
|
ContactManageService
|
|
|
|
// 安全服务
|
|
SecurityService
|
|
AttachmentCheckService
|
|
}
|