community_service.dart 209 B

123456789101112131415
  1. /*
  2. * Community 组件对应的路由抽象接口
  3. */
  4. abstract class CommunityService {
  5. void startCommunityPage();
  6. void startMyPostsPage();
  7. void startMyFollowPage();
  8. void startMyFollowerPage();
  9. }