Target_userCenter.m 358 B

123456789101112131415161718
  1. //
  2. // Target_userCenter.m
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/5/16.
  6. //
  7. #import "Target_userCenter.h"
  8. #import "ASUserCenterViewController.h"
  9. @implementation Target_userCenter
  10. - (UIViewController *)Action_getUserCenterVc:(NSDictionary *)params {
  11. ASUserCenterViewController *vc = [[ASUserCenterViewController alloc] init];
  12. return vc;
  13. }
  14. @end